mirror of https://github.com/bsnes-emu/bsnes.git
Fix inverted key buttons in the SDL menu, fixes #401
This commit is contained in:
parent
191f7cee02
commit
004b004f98
|
@ -49,8 +49,8 @@ extern unsigned command_parameter;
|
||||||
extern char *dropped_state_file;
|
extern char *dropped_state_file;
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
JOYPAD_BUTTON_LEFT,
|
|
||||||
JOYPAD_BUTTON_RIGHT,
|
JOYPAD_BUTTON_RIGHT,
|
||||||
|
JOYPAD_BUTTON_LEFT,
|
||||||
JOYPAD_BUTTON_UP,
|
JOYPAD_BUTTON_UP,
|
||||||
JOYPAD_BUTTON_DOWN,
|
JOYPAD_BUTTON_DOWN,
|
||||||
JOYPAD_BUTTON_A,
|
JOYPAD_BUTTON_A,
|
||||||
|
|
Loading…
Reference in New Issue