diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/am/applet_oe.cpp | 3 |
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"); |