summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-01-07 07:50:55 +0100
committerbunnei <bunneidev@gmail.com>2018-01-07 23:11:47 +0100
commit0368324f7925fe5568072299a0206ec71afee865 (patch)
tree2050e904e2f1933bfadbc96d1a0bc698c39a08ce /src/core/hle/service/am
parentIPC: Skip the entire u64 of the command id when receiving an IPC request. (diff)
downloadyuzu-0368324f7925fe5568072299a0206ec71afee865.tar
yuzu-0368324f7925fe5568072299a0206ec71afee865.tar.gz
yuzu-0368324f7925fe5568072299a0206ec71afee865.tar.bz2
yuzu-0368324f7925fe5568072299a0206ec71afee865.tar.lz
yuzu-0368324f7925fe5568072299a0206ec71afee865.tar.xz
yuzu-0368324f7925fe5568072299a0206ec71afee865.tar.zst
yuzu-0368324f7925fe5568072299a0206ec71afee865.zip
Diffstat (limited to 'src/core/hle/service/am')
-rw-r--r--src/core/hle/service/am/applet_oe.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/am/applet_oe.cpp b/src/core/hle/service/am/applet_oe.cpp
index 6fe7bdce5..34cc67f34 100644
--- a/src/core/hle/service/am/applet_oe.cpp
+++ b/src/core/hle/service/am/applet_oe.cpp
@@ -73,7 +73,7 @@ private:
IPC::RequestBuilder rb{ctx, 2, 1};
rb.Push(RESULT_SUCCESS);
- rb.PushObjects(event);
+ rb.PushCopyObjects(event);
LOG_WARNING(Service, "(STUBBED) called");
}