Merge branch 'fix-it-cv-string-console-block' into 'next'

Fix console not being blocked by IT_CV_STRING

See merge request STJr/SRB2!2304
This commit is contained in:
Logan Aerl Arias 2024-03-03 22:46:54 +00:00
commit 48ead1ae81

View file

@ -3426,7 +3426,7 @@ boolean M_Responder(event_t *ev)
// ignore ev_keydown events if the key maps to a character, since
// the ev_text event will follow immediately after in that case.
if (ev->type == ev_keydown && ch >= 32 && ch <= 127)
return false;
return true;
if (M_ChangeStringCvar(ch))
return true;