mirror of
https://github.com/dhewm/dhewm3.git
synced 2024-11-27 06:32:27 +00:00
Map the right alt key
SDLK_RALT was missing, it is independent of SDLK_MODE. Reported by Ensiform.
This commit is contained in:
parent
6d6c5c8ce7
commit
3e066baf91
1 changed files with 1 additions and 0 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue