Added missing ListAllUsers count

This commit is contained in:
David Marcec 2018-08-11 20:06:06 +10:00
parent acff922762
commit c3013c7c9c
1 changed files with 2 additions and 1 deletions

View File

@ -150,8 +150,9 @@ void Module::Interface::GetUserExistence(Kernel::HLERequestContext& ctx) {
void Module::Interface::ListAllUsers(Kernel::HLERequestContext& ctx) {
LOG_INFO(Service_ACC, "called");
ctx.WriteBuffer(profile_manager->GetAllUsers());
IPC::ResponseBuilder rb{ctx, 2};
IPC::ResponseBuilder rb{ctx, 3};
rb.Push(RESULT_SUCCESS);
rb.Push<u32>(static_cast<u32>(profile_manager->GetUserCount()));
}
void Module::Interface::ListOpenUsers(Kernel::HLERequestContext& ctx) {