diff options
Diffstat (limited to 'shell/menu')
-rw-r--r-- | shell/menu/menu.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/shell/menu/menu.c b/shell/menu/menu.c index b79d5ab..a23ff59 100644 --- a/shell/menu/menu.c +++ b/shell/menu/menu.c @@ -81,16 +81,16 @@ static void config_load() option.config_buttons[0][2] = SDLK_DOWN; // DOWN option.config_buttons[0][3] = SDLK_LEFT; // LEFT - option.config_buttons[0][4] = SDLK_LCTRL; // A - option.config_buttons[0][5] = SDLK_LALT; // B + option.config_buttons[0][4] = SDLK_SPACE; // A + option.config_buttons[0][5] = SDLK_LCTRL; // B option.config_buttons[0][6] = SDLK_LSHIFT; // X - option.config_buttons[0][7] = SDLK_SPACE; // Y + option.config_buttons[0][7] = SDLK_LALT; // Y option.config_buttons[0][8] = SDLK_TAB; // L option.config_buttons[0][9] = SDLK_BACKSPACE; // R option.config_buttons[0][10] = SDLK_RETURN; // START - option.config_buttons[0][11] = SDLK_ESCAPE; // SELECT + option.config_buttons[0][11] = SDLK_RCTRL; // SELECT option.fullscreen = 1; } @@ -222,14 +222,14 @@ static void Input_Remapping() currentselection = 1; } break; - case SDLK_LCTRL: + case SDLK_SPACE: case SDLK_RETURN: pressed = 1; break; case SDLK_ESCAPE: option.config_buttons[controls_chosen][currentselection - 1] = 0; break; - case SDLK_LALT: + case SDLK_LCTRL: exit_input = 1; break; case SDLK_LEFT: @@ -439,11 +439,11 @@ void Menu() break; case SDLK_END: case SDLK_RCTRL: - case SDLK_LALT: + case SDLK_LCTRL: pressed = 1; currentselection = 1; break; - case SDLK_LCTRL: + case SDLK_SPACE: case SDLK_RETURN: pressed = 1; break; |