From: Oliver Schmidt
Date: Mon, 5 Oct 2015 14:28:16 +0000 (+0200)
Subject: Fixed bogus formatting of recent contribution.
X-Git-Tag: V2.16~223
X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=e6008026aacea4d7ea409f518f06ca7a7c91380c;p=cc65
Fixed bogus formatting of recent contribution.
I wasn't in the mood for discussion ;-)
---
diff --git a/include/nes.h b/include/nes.h
index fd762a09a..7bf56c995 100644
--- a/include/nes.h
+++ b/include/nes.h
@@ -91,15 +91,14 @@
#define DYN_DRV 0
/* The joystick keys - all keys are supported */
-#define KEY_UP 0x10
-#define KEY_DOWN 0x20
-#define KEY_LEFT 0x40
-#define KEY_RIGHT 0x80
-#define KEY_A 0x1
-#define KEY_B 0x2
-#define KEY_SELECT 0x4
-#define KEY_START 0x8
-
+#define KEY_A 0x01
+#define KEY_B 0x02
+#define KEY_SELECT 0x04
+#define KEY_START 0x08
+#define KEY_UP 0x10
+#define KEY_DOWN 0x20
+#define KEY_LEFT 0x40
+#define KEY_RIGHT 0x80
/* The addresses of the static drivers */
extern void nes_stdjoy_joy[]; /* Referred to by joy_static_stddrv[] */