From 87e25247f7db977946d31800e3dc124927a563bc Mon Sep 17 00:00:00 2001 From: emmaus Date: Tue, 18 Sep 2018 14:42:38 +0000 Subject: [PATCH] update stub --- Ryujinx.HLE/HOS/Services/Hid/IHidServer.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Ryujinx.HLE/HOS/Services/Hid/IHidServer.cs b/Ryujinx.HLE/HOS/Services/Hid/IHidServer.cs index 0c58adf25..6c4664f87 100644 --- a/Ryujinx.HLE/HOS/Services/Hid/IHidServer.cs +++ b/Ryujinx.HLE/HOS/Services/Hid/IHidServer.cs @@ -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; }