Browse Source

AppletOE: Fixed command buffer structure for ReceiveMessage.

pull/15/merge
Subv 8 years ago
committed by bunnei
parent
commit
e3b4c8e043
  1. 3
      src/core/hle/service/am/applet_oe.cpp

3
src/core/hle/service/am/applet_oe.cpp

@ -79,9 +79,8 @@ private:
} }
void ReceiveMessage(Kernel::HLERequestContext& ctx) { void ReceiveMessage(Kernel::HLERequestContext& ctx) {
IPC::RequestBuilder rb{ctx, 4};
IPC::RequestBuilder rb{ctx, 3};
rb.Push(RESULT_SUCCESS); rb.Push(RESULT_SUCCESS);
rb.Skip(1, true);
rb.Push<u32>(1); rb.Push<u32>(1);
LOG_WARNING(Service, "(STUBBED) called"); LOG_WARNING(Service, "(STUBBED) called");

Loading…
Cancel
Save