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 cda973349a
commit a0c94e433d
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};