mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-23 03:12:38 +00:00
Don't add text to the console on the same frame it's being toggled
Resolves #1161
This commit is contained in:
parent
a266fbb6a0
commit
1f65c55074
1 changed files with 2 additions and 1 deletions
|
@ -983,7 +983,8 @@ boolean CON_Responder(event_t *ev)
|
|||
|
||||
if (ev->type == ev_text)
|
||||
{
|
||||
CON_InputAddChar(key);
|
||||
if (!consoletoggle)
|
||||
CON_InputAddChar(key);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue