Fix stubs #1
This commit is contained in:
parent
e913d56fdc
commit
fd25a3f0b7
3 changed files with 34 additions and 8 deletions
|
@ -27,7 +27,7 @@ namespace Ryujinx.HLE.OsHle.Services.Acc
|
|||
|
||||
public long GetUserCount(ServiceCtx Context)
|
||||
{
|
||||
Context.ResponseData.Write(0);
|
||||
Context.ResponseData.Write(1);
|
||||
|
||||
Context.Ns.Log.PrintStub(LogClass.ServiceAcc, "Stubbed.");
|
||||
|
||||
|
|
|
@ -30,7 +30,7 @@ namespace Ryujinx.HLE.OsHle.Services.Acc
|
|||
{
|
||||
Context.Ns.Log.PrintStub(LogClass.ServiceAcc, "Stubbed.");
|
||||
|
||||
Context.ResponseData.Write(0xcafeL);
|
||||
Context.ResponseData.Write(1L);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
using Ryujinx.HLE.Logging;
|
||||
using Ryujinx.HLE.OsHle.Ipc;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Ryujinx.HLE.OsHle.Services.Acc
|
||||
|
@ -22,15 +23,40 @@ namespace Ryujinx.HLE.OsHle.Services.Acc
|
|||
{
|
||||
Context.Ns.Log.PrintStub(LogClass.ServiceAcc, "Stubbed.");
|
||||
|
||||
//UserID
|
||||
Context.ResponseData.Write(1L);
|
||||
|
||||
//Padding?
|
||||
Context.ResponseData.Write(0);
|
||||
Context.ResponseData.Write(0);
|
||||
|
||||
//Timestamp
|
||||
Context.ResponseData.Write(0L);
|
||||
Context.ResponseData.Write(0L);
|
||||
Context.ResponseData.Write(0L);
|
||||
Context.ResponseData.Write(0L);
|
||||
Context.ResponseData.Write(0L);
|
||||
Context.ResponseData.Write(0L);
|
||||
Context.ResponseData.Write(0L);
|
||||
|
||||
//Username
|
||||
Context.ResponseData.Write(GetUsernameBytes("Ryujinx"));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
private byte[] GetUsernameBytes(string Username)
|
||||
{
|
||||
char[] CharArr = Username.ToCharArray();
|
||||
byte[] ByteArr = new byte[0x20];
|
||||
|
||||
for (int Index = 0; Index < ByteArr.Length; Index++)
|
||||
{
|
||||
if (Index > CharArr.Length)
|
||||
{
|
||||
ByteArr[Index] = 0x0;
|
||||
}
|
||||
else
|
||||
{
|
||||
ByteArr[Index] = Convert.ToByte(CharArr[Index]);
|
||||
}
|
||||
}
|
||||
|
||||
return ByteArr;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue