Map the right alt key

SDLK_RALT was missing, it is independent of SDLK_MODE.
Reported by Ensiform.
This commit is contained in:
dhewg 2012-01-19 00:19:51 +01:00
parent 6d6c5c8ce7
commit 3e066baf91

View file

@ -112,6 +112,7 @@ static byte mapkey(SDLKey key) {
return K_MENU;
case SDLK_LALT:
case SDLK_RALT:
return K_ALT;
case SDLK_RCTRL:
case SDLK_LCTRL: