diff options
| author | bunnei <bunneidev@gmail.com> | 2018-02-05 20:14:40 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-05 20:14:40 -0800 |
| commit | 1cd9438945629d8d56f653c32ee4ddce4f7580a0 (patch) | |
| tree | 3bfaeed6762338c883af351cef9e27021c3e0268 /src/core/hle/service/am/am.cpp | |
| parent | d129905a665ce329089338b4e468da84b3dab5d6 (diff) | |
| parent | 903beb43a84e08fc37cd58110c91dfbadf0faf0f (diff) | |
Merge pull request #165 from bunnei/puyo-fixes
Stubs for HID, AM, and a mutex fix
Diffstat (limited to 'src/core/hle/service/am/am.cpp')
| -rw-r--r-- | src/core/hle/service/am/am.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp index eb4a04c53..b3341d9ad 100644 --- a/src/core/hle/service/am/am.cpp +++ b/src/core/hle/service/am/am.cpp @@ -270,6 +270,7 @@ private: IApplicationFunctions::IApplicationFunctions() : ServiceFramework("IApplicationFunctions") { static const FunctionInfo functions[] = { {1, &IApplicationFunctions::PopLaunchParameter, "PopLaunchParameter"}, + {20, &IApplicationFunctions::EnsureSaveData, "EnsureSaveData"}, {21, &IApplicationFunctions::GetDesiredLanguage, "GetDesiredLanguage"}, {22, &IApplicationFunctions::SetTerminateResult, "SetTerminateResult"}, {66, &IApplicationFunctions::InitializeGamePlayRecording, "InitializeGamePlayRecording"}, @@ -299,6 +300,12 @@ void IApplicationFunctions::PopLaunchParameter(Kernel::HLERequestContext& ctx) { LOG_DEBUG(Service_AM, "called"); } +void IApplicationFunctions::EnsureSaveData(Kernel::HLERequestContext& ctx) { + LOG_WARNING(Service, "(STUBBED) called"); + IPC::ResponseBuilder rb{ctx, 2}; + rb.Push(RESULT_SUCCESS); +} + void IApplicationFunctions::SetTerminateResult(Kernel::HLERequestContext& ctx) { // Takes an input u32 Result, no output. // For example, in some cases official apps use this with error 0x2A2 then uses svcBreak. |
