From 796ca0243765cf56af83b459c200c4c62050fedd Mon Sep 17 00:00:00 2001 From: niansa Date: Sat, 9 Mar 2024 17:06:00 +0100 Subject: [PATCH] Stub out StartSleepSequence --- src/core/hle/service/am/service/global_state_controller.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/core/hle/service/am/service/global_state_controller.cpp b/src/core/hle/service/am/service/global_state_controller.cpp index a985b1925d..aa8f852fea 100644 --- a/src/core/hle/service/am/service/global_state_controller.cpp +++ b/src/core/hle/service/am/service/global_state_controller.cpp @@ -34,8 +34,7 @@ IGlobalStateController::IGlobalStateController(Core::System& system_) IGlobalStateController::~IGlobalStateController() = default; Result IGlobalStateController::StartSleepSequence(u8 a) { - LOG_WARNING(Service_AM, "called, a={}", a); - system.Pause(); + LOG_WARNING(Service_AM, "(STUBBED) called, a={}", a); R_SUCCEED(); }