From a51f3be38fe8dea4b3220e4071ebd826a2090c1c Mon Sep 17 00:00:00 2001 From: Reece Mackie <20544390+Rover656@users.noreply.github.com> Date: Sun, 28 Apr 2019 16:53:20 +0100 Subject: [PATCH] Fix web --- src/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.c b/src/core.c index 1dc27050c..8bff82458 100644 --- a/src/core.c +++ b/src/core.c @@ -3485,7 +3485,7 @@ static void PollInputEvents(void) // Register axis data for every connected gamepad for (int j = 0; (j < gamepadState.numAxes) && (j < MAX_GAMEPAD_AXIS); j++) { - const GamepadAxis axis = GetGamepadAxis(k); + const GamepadAxis axis = GetGamepadAxis(j); gamepadAxisState[i][axis] = gamepadState.axis[j]; }