mirror of
				https://github.com/ryujinx-mirror/ryujinx.git
				synced 2025-11-04 08:18:58 -06:00 
			
		
		
		
	HID: Stub IHidServer: 134 (SetNpadAnalogStickUseCenterClamp) (#6664)
* Add files via upload * Update IHidServer.cs mistakes... * format how do i do it * Update src/Ryujinx.HLE/HOS/Services/Hid/IHidServer.cs Co-authored-by: Agatem <agaatem@outlook.com> * Update src/Ryujinx.HLE/HOS/Services/Hid/IHidServer.cs Co-authored-by: Agatem <agaatem@outlook.com> * bruh * Apply suggestions from code review Co-authored-by: gdkchan <gab.dark.100@gmail.com> * use readuint32 instead * second thought * i hope it works thanks someone higher up with the same thing * pid * Apply suggestions from code review Co-authored-by: Ac_K <Acoustik666@gmail.com> * styles i think * Apply suggestions from code review Co-authored-by: makigumo <makigumo@users.noreply.github.com> --------- Co-authored-by: Agatem <agaatem@outlook.com> Co-authored-by: gdkchan <gab.dark.100@gmail.com> Co-authored-by: Ac_K <Acoustik666@gmail.com> Co-authored-by: makigumo <makigumo@users.noreply.github.com>
This commit is contained in:
		@@ -22,6 +22,7 @@ namespace Ryujinx.HLE.HOS.Services.Hid
 | 
			
		||||
 | 
			
		||||
        private bool _sixAxisSensorFusionEnabled;
 | 
			
		||||
        private bool _unintendedHomeButtonInputProtectionEnabled;
 | 
			
		||||
        private bool _npadAnalogStickCenterClampEnabled;
 | 
			
		||||
        private bool _vibrationPermitted;
 | 
			
		||||
        private bool _usbFullKeyControllerEnabled;
 | 
			
		||||
        private readonly bool _isFirmwareUpdateAvailableForSixAxisSensor;
 | 
			
		||||
@@ -1107,6 +1108,19 @@ namespace Ryujinx.HLE.HOS.Services.Hid
 | 
			
		||||
            //       If not, it returns nothing.
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        [CommandCmif(134)] // 6.1.0+
 | 
			
		||||
        // SetNpadUseAnalogStickUseCenterClamp(bool Enable, nn::applet::AppletResourceUserId)
 | 
			
		||||
        public ResultCode SetNpadUseAnalogStickUseCenterClamp(ServiceCtx context)
 | 
			
		||||
        {
 | 
			
		||||
            ulong pid = context.RequestData.ReadUInt64();
 | 
			
		||||
            _npadAnalogStickCenterClampEnabled = context.RequestData.ReadUInt32() != 0;
 | 
			
		||||
            long appletResourceUserId = context.RequestData.ReadInt64();
 | 
			
		||||
 | 
			
		||||
            Logger.Stub?.PrintStub(LogClass.ServiceHid, new { pid, appletResourceUserId, _npadAnalogStickCenterClampEnabled });
 | 
			
		||||
 | 
			
		||||
            return ResultCode.Success;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        [CommandCmif(200)]
 | 
			
		||||
        // GetVibrationDeviceInfo(nn::hid::VibrationDeviceHandle) -> nn::hid::VibrationDeviceInfo
 | 
			
		||||
        public ResultCode GetVibrationDeviceInfo(ServiceCtx context)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user