Don't add text to the console on the same frame it's being toggled

Resolves #1161
This commit is contained in:
Lactozilla 2023-12-26 18:29:41 -03:00
parent a266fbb6a0
commit 1f65c55074

View file

@ -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;
}