aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/hid/irs.cpp
diff options
context:
space:
mode:
authorbunnei <[email protected]>2021-04-03 21:21:22 -0700
committerbunnei <[email protected]>2021-05-05 16:40:50 -0700
commit5e5933256b022f6890fc3f14164ae9e9c3ee9ae3 (patch)
treef65bdacde0afe5465446f90e26f2da1b8126cda9 /src/core/hle/service/hid/irs.cpp
parentda7e9553dea4b1eaefb71aca8642ccce7c7f50fb (diff)
downloadyuzu-android-5e5933256b022f6890fc3f14164ae9e9c3ee9ae3.tar.gz
yuzu-android-5e5933256b022f6890fc3f14164ae9e9c3ee9ae3.zip
hle: kernel: Refactor IPC interfaces to not use std::shared_ptr.
Diffstat (limited to 'src/core/hle/service/hid/irs.cpp')
-rw-r--r--src/core/hle/service/hid/irs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/irs.cpp b/src/core/hle/service/hid/irs.cpp
index 2dfa936fb..b50a51eb7 100644
--- a/src/core/hle/service/hid/irs.cpp
+++ b/src/core/hle/service/hid/irs.cpp
@@ -62,7 +62,7 @@ void IRS::GetIrsensorSharedMemoryHandle(Kernel::HLERequestContext& ctx) {
IPC::ResponseBuilder rb{ctx, 2, 1};
rb.Push(RESULT_SUCCESS);
- rb.PushCopyObjects(shared_mem);
+ rb.PushCopyObjects(shared_mem.get());
}
void IRS::StopImageProcessor(Kernel::HLERequestContext& ctx) {