summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-01-07 10:29:16 -0500
committerbunnei <bunneidev@gmail.com>2018-01-07 17:12:05 -0500
commite3b4c8e0435f747de0f0c48983a5dbd8fe810d8c (patch)
tree4a9c15d067f3cd953de4feb39df237abb0e9e9fd /src
parentad965501d06d2df81ef59f4c2e05e3425530b971 (diff)
AppletOE: Fixed command buffer structure for ReceiveMessage.
Diffstat (limited to 'src')
-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");