aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/ro/ro.cpp
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2024-01-25 23:01:10 -0500
committerGitHub <noreply@github.com>2024-01-25 23:01:10 -0500
commitbc22b4e7823712beccb6ceb92d8f5bb20252fb65 (patch)
treed8db636f19ceceb46ca89b50f8adfb56daada875 /src/core/hle/service/ro/ro.cpp
parentf70821ce0d384494350b170ce646a0de3cfc1a1b (diff)
parenta774ff935c3b34298db17465e6053a703ed7d782 (diff)
Merge pull request #12798 from liamwhite/cmif-fixes
cmif_serialization: fixes
Diffstat (limited to 'src/core/hle/service/ro/ro.cpp')
-rw-r--r--src/core/hle/service/ro/ro.cpp3
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,