diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2022-09-27 21:24:52 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-27 21:24:52 -0300 |
| commit | 1fd5cf2b4a6f592cc8df945e540ea523a799bb97 (patch) | |
| tree | 6962acb9dc2461cbe0eebc45a7e5ce84d5c10693 /Ryujinx.HLE/HOS/Services/Account/Acc/ApplicationServiceServer.cs | |
| parent | 814f75142e8e4e81741a859db8189ca60535f3e6 (diff) | |
Fix ListOpenContextStoredUsers and stub LoadOpenContext (#3718)
* Fix ListOpenContextStoredUsers and stub LoadOpenContext
* Remove nonsensical comment
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Account/Acc/ApplicationServiceServer.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Account/Acc/ApplicationServiceServer.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/ApplicationServiceServer.cs b/Ryujinx.HLE/HOS/Services/Account/Acc/ApplicationServiceServer.cs index aa687360..7b474f0e 100644 --- a/Ryujinx.HLE/HOS/Services/Account/Acc/ApplicationServiceServer.cs +++ b/Ryujinx.HLE/HOS/Services/Account/Acc/ApplicationServiceServer.cs @@ -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. |
