mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 06:10:56 +00:00
[console] Clean up key_menu input handling
Missed this little change in the menu/console untangling.
This commit is contained in:
parent
40a26e4bc8
commit
1300cfb14e
1 changed files with 2 additions and 2 deletions
|
@ -456,8 +456,8 @@ C_KeyEvent (knum_t key, short unicode, qboolean down, void *data)
|
|||
return;
|
||||
|
||||
if (con_curr_keydest == key_menu) {
|
||||
if (Menu_KeyEvent (key, unicode, down))
|
||||
return;
|
||||
Menu_KeyEvent (key, unicode, down);
|
||||
return;
|
||||
}
|
||||
|
||||
if (down) {
|
||||
|
|
Loading…
Reference in a new issue