Browse Source

keys: allow autorepeat for menu and console for any keys

pull/2/head
Alibek Omarov 6 years ago
parent
commit
8770bdc694
  1. 5
      engine/client/keys.c

5
engine/client/keys.c

@ -527,8 +527,11 @@ Key_IsAllowedAutoRepeat @@ -527,8 +527,11 @@ Key_IsAllowedAutoRepeat
List of keys that allows auto-repeat
===================
*/
qboolean Key_IsAllowedAutoRepeat( int key )
static qboolean Key_IsAllowedAutoRepeat( int key )
{
if( cls.key_dest != key_game )
return true;
switch( key )
{
case K_BACKSPACE:

Loading…
Cancel
Save