Skip to content
Snippets Groups Projects
Commit e431cb8d authored by FearlessTobi's avatar FearlessTobi
Browse files

core/acc: Make CheckAvailability use LOG_DEBUG

Previously it was spamming the logs in certain multiplayer games like Puyo Puyo Tetris.
parent b904652d
No related branches found
No related tags found
No related merge requests found
...@@ -534,7 +534,7 @@ public: ...@@ -534,7 +534,7 @@ public:
private: private:
void CheckAvailability(Kernel::HLERequestContext& ctx) { void CheckAvailability(Kernel::HLERequestContext& ctx) {
LOG_WARNING(Service_ACC, "(STUBBED) called"); LOG_DEBUG(Service_ACC, "(STUBBED) called");
IPC::ResponseBuilder rb{ctx, 3}; IPC::ResponseBuilder rb{ctx, 3};
rb.Push(ResultSuccess); rb.Push(ResultSuccess);
rb.Push(false); // TODO: Check when this is supposed to return true and when not rb.Push(false); // TODO: Check when this is supposed to return true and when not
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment