summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/am.cpp
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/service/am/am.cpp
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 '')
-rw-r--r--src/core/hle/service/am/am.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp
index 2f8e21568..420de3c54 100644
--- a/src/core/hle/service/am/am.cpp
+++ b/src/core/hle/service/am/am.cpp
@@ -980,7 +980,7 @@ private:
LOG_DEBUG(Service_AM, "called");
IPC::RequestParser rp{ctx};
- applet->GetBroker().PushNormalDataFromGame(rp.PopIpcInterface<IStorage>());
+ applet->GetBroker().PushNormalDataFromGame(rp.PopIpcInterface<IStorage>().lock());
IPC::ResponseBuilder rb{ctx, 2};
rb.Push(ResultSuccess);
@@ -1007,7 +1007,7 @@ private:
LOG_DEBUG(Service_AM, "called");
IPC::RequestParser rp{ctx};
- applet->GetBroker().PushInteractiveDataFromGame(rp.PopIpcInterface<IStorage>());
+ applet->GetBroker().PushInteractiveDataFromGame(rp.PopIpcInterface<IStorage>().lock());
ASSERT(applet->IsInitialized());
applet->ExecuteInteractive();