summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Subv2018-01-07 10:29:16 -0500
committerGravatar bunnei2018-01-07 17:12:05 -0500
commite3b4c8e0435f747de0f0c48983a5dbd8fe810d8c (patch)
tree4a9c15d067f3cd953de4feb39df237abb0e9e9fd
parentIPC: Corrected some command headers in the IPC Controller interface. (diff)
downloadyuzu-e3b4c8e0435f747de0f0c48983a5dbd8fe810d8c.tar.gz
yuzu-e3b4c8e0435f747de0f0c48983a5dbd8fe810d8c.tar.xz
yuzu-e3b4c8e0435f747de0f0c48983a5dbd8fe810d8c.zip
AppletOE: Fixed command buffer structure for ReceiveMessage.
-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:
79 } 79 }
80 80
81 void ReceiveMessage(Kernel::HLERequestContext& ctx) { 81 void ReceiveMessage(Kernel::HLERequestContext& ctx) {
82 IPC::RequestBuilder rb{ctx, 4}; 82 IPC::RequestBuilder rb{ctx, 3};
83 rb.Push(RESULT_SUCCESS); 83 rb.Push(RESULT_SUCCESS);
84 rb.Skip(1, true);
85 rb.Push<u32>(1); 84 rb.Push<u32>(1);
86 85
87 LOG_WARNING(Service, "(STUBBED) called"); 86 LOG_WARNING(Service, "(STUBBED) called");