Stub out StartSleepSequence

merge-requests/104/head
niansa 2024-03-09 17:06:00 +07:00 committed by JuanCStar
parent 2a148c7699
commit 796ca02437
1 changed files with 1 additions and 2 deletions

@ -34,8 +34,7 @@ IGlobalStateController::IGlobalStateController(Core::System& system_)
IGlobalStateController::~IGlobalStateController() = default; IGlobalStateController::~IGlobalStateController() = default;
Result IGlobalStateController::StartSleepSequence(u8 a) { Result IGlobalStateController::StartSleepSequence(u8 a) {
LOG_WARNING(Service_AM, "called, a={}", a); LOG_WARNING(Service_AM, "(STUBBED) called, a={}", a);
system.Pause();
R_SUCCEED(); R_SUCCEED();
} }