diff options
| author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-04-07 01:59:35 -0400 | 
|---|---|---|
| committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-04-07 01:59:35 -0400 | 
| commit | d04120169d08ed39f89c6e59846b406cc3e46f08 (patch) | |
| tree | 7faae3666454e595bd7b2718928278a832f4441e | |
| parent | ad0d5818a652bb13b1b7835cf2fbe50c818175e5 (diff) | |
IApplicationFunctions: Update to 11.x
| -rw-r--r-- | src/core/hle/service/am/am.cpp | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp index 3158aacdd..605fd7376 100644 --- a/src/core/hle/service/am/am.cpp +++ b/src/core/hle/service/am/am.cpp @@ -1214,11 +1214,14 @@ IApplicationFunctions::IApplicationFunctions(Core::System& system_)          {25, &IApplicationFunctions::ExtendSaveData, "ExtendSaveData"},          {26, &IApplicationFunctions::GetSaveDataSize, "GetSaveDataSize"},          {27, nullptr, "CreateCacheStorage"}, +        {28, nullptr, "GetSaveDataSizeMax"}, +        {29, nullptr, "GetCacheStorageMax"},          {30, &IApplicationFunctions::BeginBlockingHomeButtonShortAndLongPressed, "BeginBlockingHomeButtonShortAndLongPressed"},          {31, &IApplicationFunctions::EndBlockingHomeButtonShortAndLongPressed, "EndBlockingHomeButtonShortAndLongPressed"},          {32, &IApplicationFunctions::BeginBlockingHomeButton, "BeginBlockingHomeButton"},          {33, &IApplicationFunctions::EndBlockingHomeButton, "EndBlockingHomeButton"},          {34, nullptr, "SelectApplicationLicense"}, +        {35, nullptr, "GetDeviceSaveDataSizeMax"},          {40, &IApplicationFunctions::NotifyRunning, "NotifyRunning"},          {50, &IApplicationFunctions::GetPseudoDeviceId, "GetPseudoDeviceId"},          {60, nullptr, "SetMediaPlaybackStateForApplication"}, @@ -1242,6 +1245,7 @@ IApplicationFunctions::IApplicationFunctions(Core::System& system_)          {123, &IApplicationFunctions::GetPreviousProgramIndex, "GetPreviousProgramIndex"},          {124, nullptr, "EnableApplicationAllThreadDumpOnCrash"},          {130, &IApplicationFunctions::GetGpuErrorDetectedSystemEvent, "GetGpuErrorDetectedSystemEvent"}, +        {131, nullptr, "SetDelayTimeToAbortOnGpuError"},          {140, &IApplicationFunctions::GetFriendInvitationStorageChannelEvent, "GetFriendInvitationStorageChannelEvent"},          {141, &IApplicationFunctions::TryPopFromFriendInvitationStorageChannel, "TryPopFromFriendInvitationStorageChannel"},          {150, nullptr, "GetNotificationStorageChannelEvent"}, @@ -1250,6 +1254,8 @@ IApplicationFunctions::IApplicationFunctions(Core::System& system_)          {170, nullptr, "SetHdcpAuthenticationActivated"},          {180, nullptr, "GetLaunchRequiredVersion"},          {181, nullptr, "UpgradeLaunchRequiredVersion"}, +        {190, nullptr, "SendServerMaintenanceOverlayNotification"}, +        {200, nullptr, "GetLastApplicationExitReason"},          {500, nullptr, "StartContinuousRecordingFlushForDebug"},          {1000, nullptr, "CreateMovieMaker"},          {1001, nullptr, "PrepareForJit"},  | 
