shithub: cstory

Download patch

ref: f75859b7591cf6433848af194cc7c53bfcca92da
parent: 630b5e36574e5683531cdc63ae25c4efead44ba4
author: Clownacy <Clownacy@users.noreply.github.com>
date: Sat Apr 4 23:35:43 EDT 2020

Change constant ordering

This was bugging the hell out of me

--- a/src/Main.cpp
+++ b/src/Main.cpp
@@ -770,7 +770,7 @@
 	if (!GetJoystickStatus(&status))
 		return;
 
-	gKey &= (KEY_ESCAPE | KEY_F2 | KEY_F1);
+	gKey &= (KEY_ESCAPE | KEY_F1 | KEY_F2);
 
 	// Set movement buttons
 	if (status.bLeft)