mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-13 07:21:31 +00:00
keys.c: Key_ConsoleBindable: add a better check for "general bindability".
git-svn-id: svn+ssh://svn.code.sf.net/p/quakespasm/code/trunk@1046 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
da5de52f1f
commit
0472529285
1 changed files with 4 additions and 1 deletions
|
@ -1140,7 +1140,10 @@ Key_ConsoleBindable
|
|||
*/
|
||||
qboolean Key_ConsoleBindable(int key)
|
||||
{
|
||||
if (key < 1 || key > 255)
|
||||
if (key < 0 || key > 255)
|
||||
return false;
|
||||
|
||||
if (Key_StringToKeynum(Key_KeynumToString(key)) == -1)
|
||||
return false;
|
||||
|
||||
return ((key_dest == key_console || (key_dest == key_game && con_forcedup)) && !consolekeys[key]);
|
||||
|
|
Loading…
Reference in a new issue