Ver código fonte

Fix GetLastOpenedUser stub returning an invalid account id value

gdkchan 7 anos atrás
pai
commit
8f4cd35ade

+ 1 - 1
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.");