Enable the numpad * key.

All other keys were already enabled. Reported by @m-x-d, closes #420.
This commit is contained in:
Yamagi Burmeister 2019-07-11 14:12:14 +02:00
parent 3b641e481d
commit 158fbbe559
1 changed files with 2 additions and 0 deletions

View File

@ -238,6 +238,7 @@ keyname_t keynames[] = {
{"KP_INS", K_KP_INS},
{"KP_DEL", K_KP_DEL},
{"KP_SLASH", K_KP_SLASH},
{"KP_STAR", K_KP_STAR},
{"KP_MINUS", K_KP_MINUS},
{"KP_PLUS", K_KP_PLUS},
@ -1013,6 +1014,7 @@ Key_Init(void)
consolekeys[K_KP_INS] = true;
consolekeys[K_KP_DEL] = true;
consolekeys[K_KP_SLASH] = true;
consolekeys[K_KP_STAR] = true;
consolekeys[K_KP_PLUS] = true;
consolekeys[K_KP_MINUS] = true;
consolekeys[K_KP_5] = true;