diff options
author | bunnei <bunneidev@gmail.com> | 2018-02-19 21:32:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-19 21:32:54 +0100 |
commit | ad55d221303eda0f6dfe6d6d892d950b9f6a9d8a (patch) | |
tree | d2ec845a8b86292b7a333b38f71ad22c6aecb0bc | |
parent | Merge pull request #198 from N00byKing/clang (diff) | |
parent | AM: Corrected the response in EnsureSaveData. (diff) | |
download | yuzu-ad55d221303eda0f6dfe6d6d892d950b9f6a9d8a.tar yuzu-ad55d221303eda0f6dfe6d6d892d950b9f6a9d8a.tar.gz yuzu-ad55d221303eda0f6dfe6d6d892d950b9f6a9d8a.tar.bz2 yuzu-ad55d221303eda0f6dfe6d6d892d950b9f6a9d8a.tar.lz yuzu-ad55d221303eda0f6dfe6d6d892d950b9f6a9d8a.tar.xz yuzu-ad55d221303eda0f6dfe6d6d892d950b9f6a9d8a.tar.zst yuzu-ad55d221303eda0f6dfe6d6d892d950b9f6a9d8a.zip |
-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) { |