i hope it works

thanks someone higher up with the same thing
This commit is contained in:
Tsubasa0504 2024-04-18 21:50:39 +09:00 committed by GitHub
parent d2e13b2cf4
commit 451690ec21
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1111,7 +1111,7 @@ namespace Ryujinx.HLE.HOS.Services.Hid
// SetNpadUseAnalogStickUseCenterClamp(bool Enable, nn::applet::AppletResourceUserId)
public ResultCode SetNpadUseAnalogStickUseCenterClamp(ServiceCtx context)
{
_NpadAnalogStickCenterClampEnabled = context.RequestData.ReadBoolean();
_NpadAnalogStickCenterClampEnabled = context.RequestData.ReadUInt32() != 0;
long appletResourceUserId = context.RequestData.ReadInt64();
Logger.Stub?.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, _NpadAnalogStickCenterClampEnabled });