keys.c: Add keynames BACKQUOTE and TILDE, to facilitate (un)binding them from the console.

git-svn-id: svn+ssh://svn.code.sf.net/p/quakespasm/code/trunk@1118 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
svdijk 2014-10-15 17:32:40 +00:00
parent 28c51c182b
commit 8f66647544

View file

@ -160,6 +160,9 @@ keyname_t keynames[] =
{"SEMICOLON", ';'}, // because a raw semicolon seperates commands
{"BACKQUOTE", '`'}, // because a raw backquote may toggle the console
{"TILDE", '~'}, // because a raw tilde may toggle the console
{NULL, 0}
};