mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
keys.c: Key_ConsoleBindable: special-case key 0, since it essentially means "no key".
git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@1044 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
3be5b16965
commit
362deedf20
1 changed files with 1 additions and 1 deletions
|
@ -1140,7 +1140,7 @@ Key_ConsoleBindable
|
|||
*/
|
||||
qboolean Key_ConsoleBindable(int key)
|
||||
{
|
||||
if (key < 0 || key > 255)
|
||||
if (key < 1 || key > 255)
|
||||
return false;
|
||||
|
||||
return ((key_dest == key_console || (key_dest == key_game && con_forcedup)) && !consolekeys[key]);
|
||||
|
|
Loading…
Reference in a new issue