mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 06:05:38 +00:00
Add left and right brackets as PAGEUP and PAGEDOWN keys
Some devices, such as an IPAC are hard to program for PGUP and PGDOWN. This makes it much easier and they are two keys that usually won't get used for anything.
This commit is contained in:
parent
8cf16af40b
commit
667f5424cb
|
@ -54,7 +54,11 @@ Up - Scroll up
|
|||
|
||||
Down - Scroll down
|
||||
|
||||
Left - Last system (if it exists)
|
||||
PageUp or ] - Page up
|
||||
|
||||
PageDown or [ - Page down
|
||||
|
||||
Left - Previous system (if it exists)
|
||||
|
||||
Right - Next system (if it exists)
|
||||
|
||||
|
|
|
@ -61,9 +61,15 @@ void InputManager::processEvent(SDL_Event* event)
|
|||
case SDLK_PAGEUP:
|
||||
button = PAGEUP;
|
||||
break;
|
||||
case SDLK_RIGHTBRACKET:
|
||||
button = PAGEUP;
|
||||
break;
|
||||
case SDLK_PAGEDOWN:
|
||||
button = PAGEDOWN;
|
||||
break;
|
||||
case SDLK_LEFTBRACKET:
|
||||
button = PAGEDOWN;
|
||||
break;
|
||||
case SDLK_RETURN:
|
||||
button = BUTTON1;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue