diff --git a/Ryujinx/Ui/NpadController.cs b/Ryujinx/Ui/NpadController.cs index 7b61af194..c0baf9fb4 100644 --- a/Ryujinx/Ui/NpadController.cs +++ b/Ryujinx/Ui/NpadController.cs @@ -170,7 +170,7 @@ namespace Ryujinx.UI.Input { int axis = controllerInputId - ControllerInputId.Axis0; - return Math.Abs(joystickState.GetAxis(axis)) > Deadzone; + return joystickState.GetAxis(axis) > TriggerThreshold; } else if (controllerInputId <= ControllerInputId.Hat2Right) {