update stub
This commit is contained in:
parent
1c07f24fdf
commit
87e25247f7
1 changed files with 4 additions and 2 deletions
|
@ -114,12 +114,14 @@ namespace Ryujinx.HLE.HOS.Services.Hid
|
|||
|
||||
public long IsSixAxisSensorAtRest(ServiceCtx Context)
|
||||
{
|
||||
int Handle = Context.RequestData.ReadInt32();
|
||||
int SixAxisSensorHandle = Context.RequestData.ReadInt32();
|
||||
long AppletResourceUserId = Context.RequestData.ReadInt64();
|
||||
|
||||
Context.ResponseData.Write(true);
|
||||
|
||||
Context.Device.Log.PrintStub(LogClass.ServiceHid, "Stubbed.");
|
||||
Context.Device.Log.PrintStub(LogClass.ServiceHid, $"Stubbed. AppletResourceUserId: {AppletResourceUserId} - " +
|
||||
$"SixAxisSensorHandle: {SixAxisSensorHandle} - " +
|
||||
$"IsAtRest: {true}");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue