allow up/down cursor keys to autorepeat
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@77 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
8698617965
commit
b9f99c8352
1 changed files with 2 additions and 0 deletions
|
@ -1145,6 +1145,8 @@ void Key_Event (int key, qboolean down)
|
|||
&& key != K_PGDN
|
||||
&& key != K_LEFTARROW
|
||||
&& key != K_RIGHTARROW
|
||||
&& key != K_UPARROW
|
||||
&& key != K_DOWNARROW
|
||||
&& key_repeats[key] > 1)
|
||||
return; // ignore most autorepeats
|
||||
|
||||
|
|
Loading…
Reference in a new issue