mirror of
				https://github.com/ryujinx-mirror/ryujinx.git
				synced 2025-11-04 08:18:58 -06:00 
			
		
		
		
	Fix crash when changing controller config (#6654)
* fix needsMotionInputUpdate conditions * Fix formatting Co-authored-by: gdkchan <gab.dark.100@gmail.com> --------- Co-authored-by: gdkchan <gab.dark.100@gmail.com>
This commit is contained in:
		@@ -245,9 +245,9 @@ namespace Ryujinx.Input.HLE
 | 
			
		||||
        {
 | 
			
		||||
            if (config is StandardControllerInputConfig controllerConfig)
 | 
			
		||||
            {
 | 
			
		||||
                bool needsMotionInputUpdate = _config == null || (_config is StandardControllerInputConfig oldControllerConfig &&
 | 
			
		||||
                                                                (oldControllerConfig.Motion.EnableMotion != controllerConfig.Motion.EnableMotion) &&
 | 
			
		||||
                                                                (oldControllerConfig.Motion.MotionBackend != controllerConfig.Motion.MotionBackend));
 | 
			
		||||
                bool needsMotionInputUpdate = _config is not StandardControllerInputConfig oldControllerConfig ||
 | 
			
		||||
                    ((oldControllerConfig.Motion.EnableMotion != controllerConfig.Motion.EnableMotion) &&
 | 
			
		||||
                    (oldControllerConfig.Motion.MotionBackend != controllerConfig.Motion.MotionBackend));
 | 
			
		||||
 | 
			
		||||
                if (needsMotionInputUpdate)
 | 
			
		||||
                {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user