mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 14:41:42 +00:00
Fix binding KP_NUMLOCK
Restore mapping SDL numlock to quake3 numlock.
This commit is contained in:
parent
00909a4c16
commit
077f6bd068
1 changed files with 1 additions and 0 deletions
|
@ -269,6 +269,7 @@ static keyNum_t IN_TranslateSDLToQ3Key( SDL_Keysym *keysym, qboolean down )
|
|||
case SDLK_POWER: key = K_POWER; break;
|
||||
case SDLK_UNDO: key = K_UNDO; break;
|
||||
case SDLK_SCROLLLOCK: key = K_SCROLLOCK; break;
|
||||
case SDLK_NUMLOCKCLEAR: key = K_KP_NUMLOCK; break;
|
||||
case SDLK_CAPSLOCK: key = K_CAPSLOCK; break;
|
||||
|
||||
default:
|
||||
|
|
Loading…
Reference in a new issue