From fac862031040a635b850b400643b659cd1a8137e Mon Sep 17 00:00:00 2001 From: Unknown Date: Fri, 20 Jul 2018 23:02:47 +0200 Subject: [PATCH] Fix ListOpenUsers --- .../OsHle/Services/Acc/IAccountServiceForApplication.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Ryujinx.HLE/OsHle/Services/Acc/IAccountServiceForApplication.cs b/Ryujinx.HLE/OsHle/Services/Acc/IAccountServiceForApplication.cs index 35c4cd8280..d5ee65e73d 100644 --- a/Ryujinx.HLE/OsHle/Services/Acc/IAccountServiceForApplication.cs +++ b/Ryujinx.HLE/OsHle/Services/Acc/IAccountServiceForApplication.cs @@ -52,6 +52,11 @@ namespace Ryujinx.HLE.OsHle.Services.Acc public long ListOpenUsers(ServiceCtx Context) { + long Position = Context.Request.RecvListBuff[0].Position; + + Context.Memory.WriteInt64(Position, 1L); + Context.Memory.WriteInt64(Position + 8, 0L); + Context.Ns.Log.PrintStub(LogClass.ServiceAcc, "Stubbed."); return 0;