From bb53859cbad1d884bdb58e03da1ee6c5b0411e89 Mon Sep 17 00:00:00 2001 From: John Clemis Date: Wed, 27 Jun 2018 14:29:07 -0500 Subject: [PATCH] Forgot to change the Gamepad Index --- Ryujinx/Ui/GLScreen.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx/Ui/GLScreen.cs b/Ryujinx/Ui/GLScreen.cs index 1c68cfc1f..0a580db56 100644 --- a/Ryujinx/Ui/GLScreen.cs +++ b/Ryujinx/Ui/GLScreen.cs @@ -99,7 +99,7 @@ namespace Ryujinx { //Mapping it relative to the positions of the buttons on the controller - GamePadState gamePad = GamePad.GetState(0); + GamePadState gamePad = GamePad.GetState(Config.GamePad_Index); //RightButtons if (gamePad.Buttons.B == ButtonState.Pressed) CurrentButton |= HidControllerButtons.KEY_A;