Fix keyboard input via console

This commit is contained in:
Hanicef 2024-02-15 18:56:25 +01:00
parent 6218f85658
commit de66e055a7

View file

@ -891,7 +891,6 @@ static void I_GetConsoleEvents(void)
else if (tty_con.cursor < sizeof(tty_con.buffer))
{
// push regular character
ev.type = ev_text;
ev.key = tty_con.buffer[tty_con.cursor] = key;
tty_con.cursor++;
// print the current line (this is differential)