diff options
| author | Liam <byteslice@airmail.cc> | 2024-01-25 21:12:44 -0500 |
|---|---|---|
| committer | Liam <byteslice@airmail.cc> | 2024-01-25 22:18:37 -0500 |
| commit | 431df5ae931b1b0229bdabd5855ee148a3baf001 (patch) | |
| tree | bbd1986098644ad323da6977d8a8b7ec197975be /src/core/hle/service/ro | |
| parent | e04368ad7cf4c8d8820ef4da451d9954ff38cb2d (diff) | |
cmif_types: improve ergonomics of types
Diffstat (limited to 'src/core/hle/service/ro')
| -rw-r--r-- | src/core/hle/service/ro/ro.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/service/ro/ro.cpp b/src/core/hle/service/ro/ro.cpp index ae62c430e..51196170a 100644 --- a/src/core/hle/service/ro/ro.cpp +++ b/src/core/hle/service/ro/ro.cpp @@ -551,8 +551,7 @@ public: Result RegisterProcessHandle(ClientProcessId client_pid, InCopyHandle<Kernel::KProcess>& process) { // Register the process. - R_RETURN(m_ro->RegisterProcess(std::addressof(m_context_id), process.GetPointerUnsafe(), - *client_pid)); + R_RETURN(m_ro->RegisterProcess(std::addressof(m_context_id), process.Get(), *client_pid)); } Result RegisterProcessModuleInfo(ClientProcessId client_pid, u64 nrr_address, u64 nrr_size, |
