mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-13 07:21:31 +00:00
input: Minor addition to r1077.
git-svn-id: svn+ssh://svn.code.sf.net/p/quakespasm/code/trunk@1079 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
3f19003e4a
commit
62fa0935d2
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