mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-17 22:50:51 +00:00
make K_ESCAPE bindable
This commit is contained in:
parent
7def88668a
commit
15e7e35a57
1 changed files with 1 additions and 2 deletions
|
@ -421,8 +421,7 @@ void
|
|||
Key_Console (knum_t key, short unicode)
|
||||
{
|
||||
// escape is un-bindable
|
||||
if (keydown[key] == 1 && key != QFK_ESCAPE && unicode != '\x1b'
|
||||
&& Key_Game (key, unicode))
|
||||
if (keydown[key] == 1 && key && Key_Game (key, unicode))
|
||||
return;
|
||||
|
||||
Con_KeyEvent (key, unicode, keydown[key]);
|
||||
|
|
Loading…
Reference in a new issue