diff options
author | Subv <subv2112@gmail.com> | 2018-02-19 00:09:52 +0100 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2018-02-19 00:09:52 +0100 |
commit | 5ab285f1f944d8979530e1777fcf584377ac4d2d (patch) | |
tree | d2ec845a8b86292b7a333b38f71ad22c6aecb0bc /src/core/hle/service | |
parent | Merge pull request #198 from N00byKing/clang (diff) | |
download | yuzu-5ab285f1f944d8979530e1777fcf584377ac4d2d.tar yuzu-5ab285f1f944d8979530e1777fcf584377ac4d2d.tar.gz yuzu-5ab285f1f944d8979530e1777fcf584377ac4d2d.tar.bz2 yuzu-5ab285f1f944d8979530e1777fcf584377ac4d2d.tar.lz yuzu-5ab285f1f944d8979530e1777fcf584377ac4d2d.tar.xz yuzu-5ab285f1f944d8979530e1777fcf584377ac4d2d.tar.zst yuzu-5ab285f1f944d8979530e1777fcf584377ac4d2d.zip |
Diffstat (limited to 'src/core/hle/service')
-rw-r--r-- | src/core/hle/service/am/am.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp index 402105ea0..03305814f 100644 --- a/src/core/hle/service/am/am.cpp +++ b/src/core/hle/service/am/am.cpp @@ -378,8 +378,9 @@ void IApplicationFunctions::PopLaunchParameter(Kernel::HLERequestContext& ctx) { void IApplicationFunctions::EnsureSaveData(Kernel::HLERequestContext& ctx) { LOG_WARNING(Service, "(STUBBED) called"); - IPC::ResponseBuilder rb{ctx, 2}; + IPC::ResponseBuilder rb{ctx, 4}; rb.Push(RESULT_SUCCESS); + rb.Push<u64>(0); } void IApplicationFunctions::SetTerminateResult(Kernel::HLERequestContext& ctx) { |