Allows to exit disc swap menu for MCD (was stuck before). The feature does not work yet though because of a freeze in the file selector so the menu validation is still deactivated (wip)

This commit is contained in:
root 2021-12-02 23:11:08 +01:00
parent 85dc0a1239
commit f3e359326d

View File

@ -108,19 +108,16 @@ const struct in_default_bind in_sdl_defbinds_SMS[] = {
};
const struct menu_keymap in_sdl_key_map[] = {
{ SDLK_UP, PBTN_UP },
{ SDLK_DOWN, PBTN_DOWN },
{ SDLK_LEFT, PBTN_LEFT },
{ SDLK_RIGHT, PBTN_RIGHT },
{ SDLK_u, PBTN_UP },
{ SDLK_d, PBTN_DOWN },
{ SDLK_l, PBTN_LEFT },
{ SDLK_r, PBTN_RIGHT },
{ SDLK_RETURN, PBTN_MOK },
{ SDLK_ESCAPE, PBTN_MBACK },
{ SDLK_b, PBTN_MBACK },
{ SDLK_SEMICOLON, PBTN_MA2 },
{ SDLK_QUOTE, PBTN_MA3 },
{ SDLK_LEFTBRACKET, PBTN_L },
{ SDLK_RIGHTBRACKET, PBTN_R },
{ SDLK_COMMA, PBTN_MA2 },
{ SDLK_o, PBTN_L },
{ SDLK_p, PBTN_R },
{ SDLK_m, PBTN_L },
{ SDLK_n, PBTN_R },
};
const int in_sdl_key_map_sz = sizeof(in_sdl_key_map) / sizeof(in_sdl_key_map[0]);