aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2022-09-27 21:24:52 -0300
committerGitHub <noreply@github.com>2022-09-27 21:24:52 -0300
commit1fd5cf2b4a6f592cc8df945e540ea523a799bb97 (patch)
tree6962acb9dc2461cbe0eebc45a7e5ce84d5c10693 /Ryujinx.HLE/HOS/Services/Account/Acc/AccountService
parent814f75142e8e4e81741a859db8189ca60535f3e6 (diff)
Fix ListOpenContextStoredUsers and stub LoadOpenContext (#3718)
* Fix ListOpenContextStoredUsers and stub LoadOpenContext * Remove nonsensical comment
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Account/Acc/AccountService')
-rw-r--r--Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/ManagerServer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/ManagerServer.cs b/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/ManagerServer.cs
index d74f5ecf..011accd2 100644
--- a/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/ManagerServer.cs
+++ b/Ryujinx.HLE/HOS/Services/Account/Acc/AccountService/ManagerServer.cs
@@ -162,7 +162,7 @@ namespace Ryujinx.HLE.HOS.Services.Account.Acc.AccountService
public ResultCode StoreOpenContext(ServiceCtx context)
{
- Logger.Stub?.PrintStub(LogClass.ServiceAcc);
+ context.Device.System.AccountManager.StoreOpenedUsers();
return ResultCode.Success;
}