Skip to content
Snippets Groups Projects
Commit 1f65c550 authored by Lactozilla's avatar Lactozilla :speech_balloon:
Browse files

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

Resolves #1161
parent a266fbb6
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment