mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-06 16:03:05 +00:00
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)
|
public long IsSixAxisSensorAtRest(ServiceCtx Context)
|
||||||
{
|
{
|
||||||
int Handle = Context.RequestData.ReadInt32();
|
int SixAxisSensorHandle = Context.RequestData.ReadInt32();
|
||||||
long AppletResourceUserId = Context.RequestData.ReadInt64();
|
long AppletResourceUserId = Context.RequestData.ReadInt64();
|
||||||
|
|
||||||
Context.ResponseData.Write(true);
|
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;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue