mirror of
https://github.com/RaySollium99/libpicofe.git
synced 2025-09-07 07:38:04 -04:00
don't use a and s for menu functions
leave them for rom seeking
This commit is contained in:
parent
ec90b02137
commit
d1f5849cf4
2 changed files with 5 additions and 5 deletions
6
in_sdl.c
6
in_sdl.c
|
@ -61,7 +61,7 @@ static const char * const in_sdl_keys[SDLK_LAST] = {
|
|||
[SDLK_8] = "8",
|
||||
[SDLK_9] = "9",
|
||||
[SDLK_COLON] = ":",
|
||||
[SDLK_SEMICOLON] = ",",
|
||||
[SDLK_SEMICOLON] = ";",
|
||||
[SDLK_LESS] = "<",
|
||||
[SDLK_EQUALS] = "=",
|
||||
[SDLK_GREATER] = ">",
|
||||
|
@ -399,8 +399,8 @@ static const struct menu_keymap key_pbtn_map[] =
|
|||
/* XXX: maybe better set this from it's plat code somehow */
|
||||
{ SDLK_RETURN, PBTN_MOK },
|
||||
{ SDLK_ESCAPE, PBTN_MBACK },
|
||||
{ SDLK_a, PBTN_MA2 },
|
||||
{ SDLK_s, PBTN_MA3 },
|
||||
{ SDLK_SEMICOLON, PBTN_MA2 },
|
||||
{ SDLK_QUOTE, PBTN_MA3 },
|
||||
{ SDLK_BACKSLASH, PBTN_MENU },
|
||||
{ SDLK_LEFTBRACKET, PBTN_L },
|
||||
{ SDLK_RIGHTBRACKET, PBTN_R },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue