mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-03-13 14:28:01 +00:00
removed unnecessary m_keys_bind_grab check from autorepeats.
git-svn-id: svn+ssh://svn.code.sf.net/p/quakespasm/code/trunk@764 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
4c080e33f0
commit
2a2a12af52
1 changed files with 2 additions and 2 deletions
|
@ -900,11 +900,11 @@ void Key_Event (int key, qboolean down)
|
|||
key_repeats[key]++;
|
||||
if (key_repeats[key] > 1)
|
||||
{
|
||||
if ((key_dest == key_game && !con_forcedup) || m_keys_bind_grab)
|
||||
if (key_dest == key_game && !con_forcedup)
|
||||
return; // ignore autorepeats in game mode
|
||||
}
|
||||
else if (key >= 200 && !keybindings[key])
|
||||
Con_Printf ("%s is unbound, hit F4 to set.\n", Key_KeynumToString (key) );
|
||||
Con_Printf ("%s is unbound, hit F4 to set.\n", Key_KeynumToString(key));
|
||||
}
|
||||
|
||||
if (key == K_SHIFT)
|
||||
|
|
Loading…
Reference in a new issue