mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-09 01:01:07 +00:00
input: Minor addition to r1077.
git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@1079 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
1ab2cbde9b
commit
2c177df399
1 changed files with 5 additions and 2 deletions
|
@ -966,8 +966,8 @@ void Key_Event (int key, qboolean down)
|
|||
{
|
||||
if (key_repeats[key] == 0)
|
||||
return;
|
||||
else
|
||||
key_repeats[key] = 0;
|
||||
|
||||
key_repeats[key] = 0;
|
||||
}
|
||||
|
||||
if (key_inputgrab.active)
|
||||
|
@ -1163,6 +1163,9 @@ qboolean Key_IgnoreTextInput (int key)
|
|||
if (!keybindings[key])
|
||||
return false;
|
||||
|
||||
if (key_inputgrab.active)
|
||||
return false;
|
||||
|
||||
switch (key_dest)
|
||||
{
|
||||
case key_message:
|
||||
|
|
Loading…
Reference in a new issue