diff --git a/Ryujinx.HLE/HOS/Services/Hid/IHidServer.cs b/Ryujinx.HLE/HOS/Services/Hid/IHidServer.cs index e5b56a6090..82c3a3594f 100644 --- a/Ryujinx.HLE/HOS/Services/Hid/IHidServer.cs +++ b/Ryujinx.HLE/HOS/Services/Hid/IHidServer.cs @@ -145,6 +145,7 @@ namespace Ryujinx.HLE.HOS.Services.Hid { 511, WritePalmaApplicationSection }, { 512, ReadPalmaUniqueCode }, { 513, SetPalmaUniqueCodeInvalid }, + { 525, SetPalmaBoostMode }, { 1000, SetNpadCommunicationMode }, { 1001, GetNpadCommunicationMode } }; @@ -1437,6 +1438,16 @@ namespace Ryujinx.HLE.HOS.Services.Hid return 0; } + // SetPalmaBoostMode(bool) + private long SetPalmaBoostMode(ServiceCtx context) + { + bool palmaBoostEnabled = context.RequestData.ReadBoolean(); + + Logger.PrintStub(LogClass.ServiceHid, new { palmaBoostEnabled }); + + return 0; + } + // SetNpadCommunicationMode(long CommunicationMode, nn::applet::AppletResourceUserId) public long SetNpadCommunicationMode(ServiceCtx context) {