diff options
author | Subv <subv2112@gmail.com> | 2018-01-07 16:29:16 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-01-07 23:12:05 +0100 |
commit | e3b4c8e0435f747de0f0c48983a5dbd8fe810d8c (patch) | |
tree | 4a9c15d067f3cd953de4feb39df237abb0e9e9fd /src/core/hle/service/am | |
parent | IPC: Corrected some command headers in the IPC Controller interface. (diff) | |
download | yuzu-e3b4c8e0435f747de0f0c48983a5dbd8fe810d8c.tar yuzu-e3b4c8e0435f747de0f0c48983a5dbd8fe810d8c.tar.gz yuzu-e3b4c8e0435f747de0f0c48983a5dbd8fe810d8c.tar.bz2 yuzu-e3b4c8e0435f747de0f0c48983a5dbd8fe810d8c.tar.lz yuzu-e3b4c8e0435f747de0f0c48983a5dbd8fe810d8c.tar.xz yuzu-e3b4c8e0435f747de0f0c48983a5dbd8fe810d8c.tar.zst yuzu-e3b4c8e0435f747de0f0c48983a5dbd8fe810d8c.zip |
Diffstat (limited to 'src/core/hle/service/am')
-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"); |