acc: Stub GetUserCount. (#973)

- Used by Pokken Tournament DX.
This commit is contained in:
bunnei
2018-08-07 22:39:12 -04:00
committed by GitHub
parent 80cfd88e4e
commit 2bc296801a
3 changed files with 9 additions and 1 deletions

View File

@ -119,6 +119,13 @@ private:
}
};
void Module::Interface::GetUserCount(Kernel::HLERequestContext& ctx) {
LOG_WARNING(Service_ACC, "(STUBBED) called");
IPC::ResponseBuilder rb{ctx, 3};
rb.Push(RESULT_SUCCESS);
rb.Push<u32>(1);
}
void Module::Interface::GetUserExistence(Kernel::HLERequestContext& ctx) {
LOG_WARNING(Service_ACC, "(STUBBED) called");
IPC::ResponseBuilder rb{ctx, 3};