Fix ListOpenContextStoredUsers and stub LoadOpenContext (#3718)

* Fix ListOpenContextStoredUsers and stub LoadOpenContext

* Remove nonsensical comment
This commit is contained in:
gdkchan 2022-09-27 21:24:52 -03:00 committed by GitHub
parent 814f75142e
commit 1fd5cf2b4a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 32 additions and 15 deletions

View file

@ -201,6 +201,11 @@ namespace Ryujinx.HLE.HOS.Services.Account.Acc
return ResultCode.Success;
}
public ResultCode ListOpenContextStoredUsers(ServiceCtx context)
{
return WriteUserList(context, context.Device.System.AccountManager.GetStoredOpenedUsers());
}
public ResultCode ListQualifiedUsers(ServiceCtx context)
{
// TODO: Determine how users are "qualified". We assume all users are "qualified" for now.