소스 검색

core/acc: Make CheckAvailability use LOG_DEBUG

Previously it was spamming the logs in certain multiplayer games like Puyo Puyo Tetris.
FearlessTobi 3 년 전
부모
커밋
e431cb8d16
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/core/hle/service/acc/acc.cpp

+ 1 - 1
src/core/hle/service/acc/acc.cpp

@@ -534,7 +534,7 @@ public:
 
 private:
     void CheckAvailability(Kernel::HLERequestContext& ctx) {
-        LOG_WARNING(Service_ACC, "(STUBBED) called");
+        LOG_DEBUG(Service_ACC, "(STUBBED) called");
         IPC::ResponseBuilder rb{ctx, 3};
         rb.Push(ResultSuccess);
         rb.Push(false); // TODO: Check when this is supposed to return true and when not