diff options
Diffstat (limited to '')
| -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) { | |||
| 378 | 378 | ||
| 379 | void IApplicationFunctions::EnsureSaveData(Kernel::HLERequestContext& ctx) { | 379 | void IApplicationFunctions::EnsureSaveData(Kernel::HLERequestContext& ctx) { |
| 380 | LOG_WARNING(Service, "(STUBBED) called"); | 380 | LOG_WARNING(Service, "(STUBBED) called"); |
| 381 | IPC::ResponseBuilder rb{ctx, 2}; | 381 | IPC::ResponseBuilder rb{ctx, 4}; |
| 382 | rb.Push(RESULT_SUCCESS); | 382 | rb.Push(RESULT_SUCCESS); |
| 383 | rb.Push<u64>(0); | ||
| 383 | } | 384 | } |
| 384 | 385 | ||
| 385 | void IApplicationFunctions::SetTerminateResult(Kernel::HLERequestContext& ctx) { | 386 | void IApplicationFunctions::SetTerminateResult(Kernel::HLERequestContext& ctx) { |