keys.c Key_ConsoleBindable(): add sanity check

git-svn-id: svn+ssh://svn.code.sf.net/p/quakespasm/code/trunk@1043 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
svdijk 2014-09-20 22:45:52 +00:00
parent db221199ee
commit 4ada06645b
1 changed files with 3 additions and 0 deletions

View File

@ -1140,5 +1140,8 @@ Key_ConsoleBindable
*/
qboolean Key_ConsoleBindable(int key)
{
if (key < 0 || key > 255)
return false;
return ((key_dest == key_console || (key_dest == key_game && con_forcedup)) && !consolekeys[key]);
}