This commit is contained in:
greggameplayer 2018-08-14 15:19:22 +00:00 committed by GitHub
commit 30ff597636
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;