second thought

This commit is contained in:
Tsubasa0504 2024-04-15 21:52:26 +09:00 committed by GitHub
parent 03481d547f
commit 5b3d98e99b
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.ReadUInt32();
_NpadAnalogStickCenterClampEnabled = context.RequestData.ReadBoolean();
long appletResourceUserId = context.RequestData.ReadInt64();
Logger.Stub?.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, _NpadAnalogStickCenterClampEnabled });