summaryrefslogtreecommitdiffstats
path: root/src/core/hle/ipc_helpers.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-03-11 08:45:54 +0100
committerbunnei <bunneidev@gmail.com>2022-03-15 02:14:53 +0100
commit07c9d9bdbdbf632624ca01ea83dbfa51176415ae (patch)
tree7c9a425ed2c7397e679d24356e36ab54372c7755 /src/core/hle/ipc_helpers.h
parentcore: hle: kernel: k_memory_layout: Update kernel slab memory sizes. (diff)
downloadyuzu-07c9d9bdbdbf632624ca01ea83dbfa51176415ae.tar
yuzu-07c9d9bdbdbf632624ca01ea83dbfa51176415ae.tar.gz
yuzu-07c9d9bdbdbf632624ca01ea83dbfa51176415ae.tar.bz2
yuzu-07c9d9bdbdbf632624ca01ea83dbfa51176415ae.tar.lz
yuzu-07c9d9bdbdbf632624ca01ea83dbfa51176415ae.tar.xz
yuzu-07c9d9bdbdbf632624ca01ea83dbfa51176415ae.tar.zst
yuzu-07c9d9bdbdbf632624ca01ea83dbfa51176415ae.zip
Diffstat (limited to 'src/core/hle/ipc_helpers.h')
-rw-r--r--src/core/hle/ipc_helpers.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/ipc_helpers.h b/src/core/hle/ipc_helpers.h
index 026257115..3c4e45fcd 100644
--- a/src/core/hle/ipc_helpers.h
+++ b/src/core/hle/ipc_helpers.h
@@ -385,7 +385,7 @@ public:
T PopRaw();
template <class T>
- std::shared_ptr<T> PopIpcInterface() {
+ std::weak_ptr<T> PopIpcInterface() {
ASSERT(context->Session()->IsDomain());
ASSERT(context->GetDomainMessageHeader().input_object_count > 0);
return context->GetDomainHandler<T>(Pop<u32>() - 1);