summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-01-07 16:29:16 +0100
committerbunnei <bunneidev@gmail.com>2018-01-07 23:12:05 +0100
commite3b4c8e0435f747de0f0c48983a5dbd8fe810d8c (patch)
tree4a9c15d067f3cd953de4feb39df237abb0e9e9fd /src/core/hle/service/am
parentIPC: Corrected some command headers in the IPC Controller interface. (diff)
downloadyuzu-e3b4c8e0435f747de0f0c48983a5dbd8fe810d8c.tar
yuzu-e3b4c8e0435f747de0f0c48983a5dbd8fe810d8c.tar.gz
yuzu-e3b4c8e0435f747de0f0c48983a5dbd8fe810d8c.tar.bz2
yuzu-e3b4c8e0435f747de0f0c48983a5dbd8fe810d8c.tar.lz
yuzu-e3b4c8e0435f747de0f0c48983a5dbd8fe810d8c.tar.xz
yuzu-e3b4c8e0435f747de0f0c48983a5dbd8fe810d8c.tar.zst
yuzu-e3b4c8e0435f747de0f0c48983a5dbd8fe810d8c.zip
Diffstat (limited to 'src/core/hle/service/am')
-rw-r--r--src/core/hle/service/am/applet_oe.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/service/am/applet_oe.cpp b/src/core/hle/service/am/applet_oe.cpp
index 2784b8cfc..590b164d1 100644
--- a/src/core/hle/service/am/applet_oe.cpp
+++ b/src/core/hle/service/am/applet_oe.cpp
@@ -79,9 +79,8 @@ private:
}
void ReceiveMessage(Kernel::HLERequestContext& ctx) {
- IPC::RequestBuilder rb{ctx, 4};
+ IPC::RequestBuilder rb{ctx, 3};
rb.Push(RESULT_SUCCESS);
- rb.Skip(1, true);
rb.Push<u32>(1);
LOG_WARNING(Service, "(STUBBED) called");