diff options
| author | 2022-08-27 03:08:21 +0200 | |
|---|---|---|
| committer | 2022-08-27 03:08:21 +0200 | |
| commit | e431cb8d1606b4d43b091f0de64aefeb19ce88bf (patch) | |
| tree | 6a0c2679dfbf43ea4210436509cfcb9f7d52cdb8 /src/core/hle/service/acc | |
| parent | yuzu_room: Remove dependency on core (diff) | |
| download | yuzu-e431cb8d1606b4d43b091f0de64aefeb19ce88bf.tar.gz yuzu-e431cb8d1606b4d43b091f0de64aefeb19ce88bf.tar.xz yuzu-e431cb8d1606b4d43b091f0de64aefeb19ce88bf.zip | |
core/acc: Make CheckAvailability use LOG_DEBUG
Previously it was spamming the logs in certain multiplayer games like Puyo Puyo Tetris.
Diffstat (limited to 'src/core/hle/service/acc')
| -rw-r--r-- | src/core/hle/service/acc/acc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/acc/acc.cpp b/src/core/hle/service/acc/acc.cpp index def105832..bb838e285 100644 --- a/src/core/hle/service/acc/acc.cpp +++ b/src/core/hle/service/acc/acc.cpp | |||
| @@ -534,7 +534,7 @@ public: | |||
| 534 | 534 | ||
| 535 | private: | 535 | private: |
| 536 | void CheckAvailability(Kernel::HLERequestContext& ctx) { | 536 | void CheckAvailability(Kernel::HLERequestContext& ctx) { |
| 537 | LOG_WARNING(Service_ACC, "(STUBBED) called"); | 537 | LOG_DEBUG(Service_ACC, "(STUBBED) called"); |
| 538 | IPC::ResponseBuilder rb{ctx, 3}; | 538 | IPC::ResponseBuilder rb{ctx, 3}; |
| 539 | rb.Push(ResultSuccess); | 539 | rb.Push(ResultSuccess); |
| 540 | rb.Push(false); // TODO: Check when this is supposed to return true and when not | 540 | rb.Push(false); // TODO: Check when this is supposed to return true and when not |