1
0
forked from MeloNX/MeloNX

Fix GetLastOpenedUser stub returning an invalid account id value

This commit is contained in:
gdkchan 2018-06-25 17:11:09 -03:00
parent 9dfc5c90f2
commit bb04b23ca7

View File

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