use readuint32 instead
This commit is contained in:
parent
16ef3e9c7b
commit
03481d547f
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
long appletResourceUserId = context.RequestData.ReadInt64();
|
||||
|
||||
Logger.Stub?.PrintStub(LogClass.ServiceHid, new { appletResourceUserId, _NpadAnalogStickCenterClampEnabled });
|
||||
|
|
Loading…
Add table
Reference in a new issue