mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-06 23:13:20 +00:00
Eat unprintable keys too, since there's no reason to feed them to G_Responder anyway when the console is open
This commit is contained in:
parent
bef710aa8f
commit
ce78df03d0
1 changed files with 1 additions and 1 deletions
|
|
@ -1043,7 +1043,7 @@ boolean CON_Responder(event_t *ev)
|
|||
|
||||
// enter a char into the command prompt
|
||||
if (key < 32 || key > 127)
|
||||
return false;
|
||||
return true; // even if key can't be printed, eat it anyway
|
||||
|
||||
// add key to cmd line here
|
||||
if (key >= 'A' && key <= 'Z' && !shiftdown) //this is only really necessary for dedicated servers
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue