1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-25 21:55:33 +00:00

Fixed bogus formatting of recent contribution.

I wasn't in the mood for discussion ;-)
This commit is contained in:
Oliver Schmidt 2015-10-05 16:28:16 +02:00
parent 08e4cbfdbc
commit e6008026aa

View File

@ -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[] */