From 98b4883efd98b571cb4a949dfbbd6cf6fbafd4ed Mon Sep 17 00:00:00 2001 From: "Stefanos A." Date: Sun, 22 Dec 2013 22:47:50 +0100 Subject: [PATCH] Fixed x/y axis mixup. --- Source/OpenTK/Input/GamePadState.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/OpenTK/Input/GamePadState.cs b/Source/OpenTK/Input/GamePadState.cs index ad603017..b0501f6c 100644 --- a/Source/OpenTK/Input/GamePadState.cs +++ b/Source/OpenTK/Input/GamePadState.cs @@ -119,7 +119,7 @@ namespace OpenTK.Input break; case GamePadAxis.RightY: - right_stick_x = value; + right_stick_y = value; break; default: