From de66e055a7f642af1945789a6959e15ef239bec5 Mon Sep 17 00:00:00 2001 From: Hanicef <gustaf@hanicef.me> Date: Thu, 15 Feb 2024 18:56:25 +0100 Subject: [PATCH] Fix keyboard input via console --- src/dedicated/i_system.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/dedicated/i_system.c b/src/dedicated/i_system.c index 8f2e0882a7..4dbaec8df9 100644 --- a/src/dedicated/i_system.c +++ b/src/dedicated/i_system.c @@ -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) -- GitLab