diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-06-25 17:11:09 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-06-25 17:12:59 -0300 |
| commit | 8f4cd35ade6204aac01ecee9f4303a4e9ac191a4 (patch) | |
| tree | da27ffe174b76ae8fb3851b44ef0a94453f5f091 | |
| parent | 0bec9d8439de99de3959c170e33b2b93d030b837 (diff) | |
Fix GetLastOpenedUser stub returning an invalid account id value
| -rw-r--r-- | Ryujinx.HLE/OsHle/Services/Acc/IAccountServiceForApplication.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.HLE/OsHle/Services/Acc/IAccountServiceForApplication.cs b/Ryujinx.HLE/OsHle/Services/Acc/IAccountServiceForApplication.cs index 470b9ccb..35c4cd82 100644 --- a/Ryujinx.HLE/OsHle/Services/Acc/IAccountServiceForApplication.cs +++ b/Ryujinx.HLE/OsHle/Services/Acc/IAccountServiceForApplication.cs @@ -59,7 +59,7 @@ namespace Ryujinx.HLE.OsHle.Services.Acc public long GetLastOpenedUser(ServiceCtx Context) { - Context.ResponseData.Write(0L); + Context.ResponseData.Write(1L); Context.ResponseData.Write(0L); Context.Ns.Log.PrintStub(LogClass.ServiceAcc, "Stubbed."); |
