From e3b4c8e0435f747de0f0c48983a5dbd8fe810d8c Mon Sep 17 00:00:00 2001 From: Subv Date: Sun, 7 Jan 2018 10:29:16 -0500 Subject: AppletOE: Fixed command buffer structure for ReceiveMessage. --- src/core/hle/service/am/applet_oe.cpp | 3 +-- 1 file changed, 1 insertion(+), 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(1); LOG_WARNING(Service, "(STUBBED) called"); -- cgit v1.2.3