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

git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@1118 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
Sander van Dijk 2014-10-15 17:32:40 +00:00
parent e06f197879
commit 5438f83b08

View file

@ -160,6 +160,9 @@ keyname_t keynames[] =
{"SEMICOLON", ';'}, // because a raw semicolon seperates commands {"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} {NULL, 0}
}; };