diff options
Diffstat (limited to 'Ryujinx/Ui/GLScreen.cs')
-rw-r--r-- | Ryujinx/Ui/GLScreen.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Ryujinx/Ui/GLScreen.cs b/Ryujinx/Ui/GLScreen.cs index 33ecc917..a881959c 100644 --- a/Ryujinx/Ui/GLScreen.cs +++ b/Ryujinx/Ui/GLScreen.cs @@ -183,17 +183,17 @@ namespace Ryujinx }; } - currentButton |= Configuration.Instance.GamepadControls.GetButtons(); + currentButton |= Configuration.Instance.JoystickControls.GetButtons(); // Keyboard has priority stick-wise if (leftJoystickDx == 0 && leftJoystickDy == 0) { - (leftJoystickDx, leftJoystickDy) = Configuration.Instance.GamepadControls.GetLeftStick(); + (leftJoystickDx, leftJoystickDy) = Configuration.Instance.JoystickControls.GetLeftStick(); } if (rightJoystickDx == 0 && rightJoystickDy == 0) { - (rightJoystickDx, rightJoystickDy) = Configuration.Instance.GamepadControls.GetRightStick(); + (rightJoystickDx, rightJoystickDy) = Configuration.Instance.JoystickControls.GetRightStick(); } leftJoystick = new JoystickPosition |