diff options
| -rw-r--r-- | src/core/hle/service/am/am.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp index 748cdecac..95bbda7aa 100644 --- a/src/core/hle/service/am/am.cpp +++ b/src/core/hle/service/am/am.cpp | |||
| @@ -645,6 +645,7 @@ ICommonStateGetter::ICommonStateGetter(Core::System& system_, | |||
| 645 | {11, nullptr, "ReleaseSleepLock"}, | 645 | {11, nullptr, "ReleaseSleepLock"}, |
| 646 | {12, nullptr, "ReleaseSleepLockTransiently"}, | 646 | {12, nullptr, "ReleaseSleepLockTransiently"}, |
| 647 | {13, nullptr, "GetAcquiredSleepLockEvent"}, | 647 | {13, nullptr, "GetAcquiredSleepLockEvent"}, |
| 648 | {14, nullptr, "GetWakeupCount"}, | ||
| 648 | {20, nullptr, "PushToGeneralChannel"}, | 649 | {20, nullptr, "PushToGeneralChannel"}, |
| 649 | {30, nullptr, "GetHomeButtonReaderLockAccessor"}, | 650 | {30, nullptr, "GetHomeButtonReaderLockAccessor"}, |
| 650 | {31, nullptr, "GetReaderLockAccessorEx"}, | 651 | {31, nullptr, "GetReaderLockAccessorEx"}, |
| @@ -656,6 +657,7 @@ ICommonStateGetter::ICommonStateGetter(Core::System& system_, | |||
| 656 | {53, &ICommonStateGetter::BeginVrModeEx, "BeginVrModeEx"}, | 657 | {53, &ICommonStateGetter::BeginVrModeEx, "BeginVrModeEx"}, |
| 657 | {54, &ICommonStateGetter::EndVrModeEx, "EndVrModeEx"}, | 658 | {54, &ICommonStateGetter::EndVrModeEx, "EndVrModeEx"}, |
| 658 | {55, nullptr, "IsInControllerFirmwareUpdateSection"}, | 659 | {55, nullptr, "IsInControllerFirmwareUpdateSection"}, |
| 660 | {59, nullptr, "SetVrPositionForDebug"}, | ||
| 659 | {60, &ICommonStateGetter::GetDefaultDisplayResolution, "GetDefaultDisplayResolution"}, | 661 | {60, &ICommonStateGetter::GetDefaultDisplayResolution, "GetDefaultDisplayResolution"}, |
| 660 | {61, &ICommonStateGetter::GetDefaultDisplayResolutionChangeEvent, "GetDefaultDisplayResolutionChangeEvent"}, | 662 | {61, &ICommonStateGetter::GetDefaultDisplayResolutionChangeEvent, "GetDefaultDisplayResolutionChangeEvent"}, |
| 661 | {62, nullptr, "GetHdcpAuthenticationState"}, | 663 | {62, nullptr, "GetHdcpAuthenticationState"}, |
| @@ -664,14 +666,21 @@ ICommonStateGetter::ICommonStateGetter(Core::System& system_, | |||
| 664 | {65, nullptr, "GetApplicationIdByContentActionName"}, | 666 | {65, nullptr, "GetApplicationIdByContentActionName"}, |
| 665 | {66, &ICommonStateGetter::SetCpuBoostMode, "SetCpuBoostMode"}, | 667 | {66, &ICommonStateGetter::SetCpuBoostMode, "SetCpuBoostMode"}, |
| 666 | {67, nullptr, "CancelCpuBoostMode"}, | 668 | {67, nullptr, "CancelCpuBoostMode"}, |
| 669 | {68, nullptr, "GetBuiltInDisplayType"}, | ||
| 667 | {80, nullptr, "PerformSystemButtonPressingIfInFocus"}, | 670 | {80, nullptr, "PerformSystemButtonPressingIfInFocus"}, |
| 668 | {90, nullptr, "SetPerformanceConfigurationChangedNotification"}, | 671 | {90, nullptr, "SetPerformanceConfigurationChangedNotification"}, |
| 669 | {91, nullptr, "GetCurrentPerformanceConfiguration"}, | 672 | {91, nullptr, "GetCurrentPerformanceConfiguration"}, |
| 670 | {100, nullptr, "SetHandlingHomeButtonShortPressedEnabled"}, | 673 | {100, nullptr, "SetHandlingHomeButtonShortPressedEnabled"}, |
| 674 | {110, nullptr, "OpenMyGpuErrorHandler"}, | ||
| 671 | {200, nullptr, "GetOperationModeSystemInfo"}, | 675 | {200, nullptr, "GetOperationModeSystemInfo"}, |
| 672 | {300, nullptr, "GetSettingsPlatformRegion"}, | 676 | {300, nullptr, "GetSettingsPlatformRegion"}, |
| 673 | {400, nullptr, "ActivateMigrationService"}, | 677 | {400, nullptr, "ActivateMigrationService"}, |
| 674 | {401, nullptr, "DeactivateMigrationService"}, | 678 | {401, nullptr, "DeactivateMigrationService"}, |
| 679 | {500, nullptr, "DisableSleepTillShutdown"}, | ||
| 680 | {501, nullptr, "SuppressDisablingSleepTemporarily"}, | ||
| 681 | {502, nullptr, "IsSleepEnabled"}, | ||
| 682 | {503, nullptr, "IsDisablingSleepSuppressed"}, | ||
| 683 | {900, nullptr, "SetRequestExitToLibraryAppletAtExecuteNextProgramEnabled"}, | ||
| 675 | }; | 684 | }; |
| 676 | // clang-format on | 685 | // clang-format on |
| 677 | 686 | ||