diff --git a/src/Ryujinx.HLE/HOS/Services/Hid/IHidServer.cs b/src/Ryujinx.HLE/HOS/Services/Hid/IHidServer.cs index 556e35ea61..c1856535b6 100644 --- a/src/Ryujinx.HLE/HOS/Services/Hid/IHidServer.cs +++ b/src/Ryujinx.HLE/HOS/Services/Hid/IHidServer.cs @@ -702,6 +702,18 @@ public ResultCode ActivateGesture(ServiceCtx context) return ResultCode.Success; } + + [CommandCmif(92)] + // SetGestureOutputRanges(pid, ushort Unknown0) + public ResultCode SetGestureOutputRanges(ServiceCtx context) + { + ulong pid = context.Request.HandleDesc.PId; + ushort unknown0 = context.RequestData.ReadUInt16(); + + Logger.Stub?.PrintStub(LogClass.ServiceHid, new { pid, unknown0 }); + + return ResultCode.Success; + } [CommandCmif(100)] // SetSupportedNpadStyleSet(pid, nn::applet::AppletResourceUserId, nn::hid::NpadStyleTag)