Merge pull request #34 from invisiblek/master

Add left and right brackets as PAGEUP and PAGEDOWN keys
This commit is contained in:
Aloshi 2012-11-30 20:56:40 -08:00
commit 8a3eefcffc
2 changed files with 11 additions and 1 deletions

View file

@ -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)

View file

@ -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;