From f75859b7591cf6433848af194cc7c53bfcca92da Mon Sep 17 00:00:00 2001 From: Clownacy Date: Sun, 5 Apr 2020 03:35:43 +0100 Subject: [PATCH] Change constant ordering This was bugging the hell out of me --- src/Main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Main.cpp b/src/Main.cpp index 2544b3a1..5719d734 100644 --- a/src/Main.cpp +++ b/src/Main.cpp @@ -770,7 +770,7 @@ void JoystickProc(void) if (!GetJoystickStatus(&status)) return; - gKey &= (KEY_ESCAPE | KEY_F2 | KEY_F1); + gKey &= (KEY_ESCAPE | KEY_F1 | KEY_F2); // Set movement buttons if (status.bLeft)