diff options
author | gameblabla | 2020-11-13 12:52:02 +0100 |
---|---|---|
committer | gameblabla | 2020-11-13 12:52:02 +0100 |
commit | 4c1a193d483b10ef63c27553f6e6e95af23552b8 (patch) | |
tree | 158b83fd0eb952d4e3ef7c3aa17ba4db1644e753 | |
parent | 2c0f6b94dde7ee731b12d8cd0325125a4130f7e1 (diff) | |
download | snesemu-4c1a193d483b10ef63c27553f6e6e95af23552b8.tar.gz snesemu-4c1a193d483b10ef63c27553f6e6e95af23552b8.tar.bz2 snesemu-4c1a193d483b10ef63c27553f6e6e95af23552b8.zip |
Revert "Fix buttons"
This reverts commit bd845b9085ab3f59a66278c4f7d4d00877d8fce1.
We want to use the GCW0 layout, not the RG-350's.
-rw-r--r-- | shell/menu/menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/menu/menu.c b/shell/menu/menu.c index af5e5e7..a8c24b5 100644 --- a/shell/menu/menu.c +++ b/shell/menu/menu.c @@ -83,8 +83,8 @@ static void config_load() option.config_buttons[0][4] = SDLK_LCTRL; // A option.config_buttons[0][5] = SDLK_LALT; // B - option.config_buttons[0][6] = SDLK_SPACE; // X - option.config_buttons[0][7] = SDLK_LSHIFT; // Y + option.config_buttons[0][6] = SDLK_LSHIFT; // X + option.config_buttons[0][7] = SDLK_SPACE; // Y option.config_buttons[0][8] = SDLK_TAB; // L option.config_buttons[0][9] = SDLK_BACKSPACE; // R |