소스 검색

Stub out StartSleepSequence

niansa 2 년 전
부모
커밋
aaff9411ec
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      src/core/hle/service/am/service/global_state_controller.cpp

+ 1 - 2
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();
 }