Fix ListOpenUsers
This commit is contained in:
parent
241b46540d
commit
fac8620310
1 changed files with 5 additions and 0 deletions
|
@ -52,6 +52,11 @@ namespace Ryujinx.HLE.OsHle.Services.Acc
|
||||||
|
|
||||||
public long ListOpenUsers(ServiceCtx Context)
|
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.");
|
Context.Ns.Log.PrintStub(LogClass.ServiceAcc, "Stubbed.");
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in a new issue