diff options
author | bunnei <[email protected]> | 2021-04-03 21:21:22 -0700 |
---|---|---|
committer | bunnei <[email protected]> | 2021-05-05 16:40:50 -0700 |
commit | 5e5933256b022f6890fc3f14164ae9e9c3ee9ae3 (patch) | |
tree | f65bdacde0afe5465446f90e26f2da1b8126cda9 /src/core/hle/service/hid/irs.cpp | |
parent | da7e9553dea4b1eaefb71aca8642ccce7c7f50fb (diff) | |
download | yuzu-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.cpp | 2 |
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) { |