From b79deabab1b2e3ab38c9699be3ff35412b839346 Mon Sep 17 00:00:00 2001 From: "Dileep V. Reddy" Date: Mon, 16 Sep 2024 09:43:15 -0600 Subject: [PATCH] Prevent console from laying open when intro cutscene plays on some systems. --- src/g_game.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/g_game.cpp b/src/g_game.cpp index 105b16aa74..e80a5cfd22 100644 --- a/src/g_game.cpp +++ b/src/g_game.cpp @@ -1236,6 +1236,7 @@ void G_Ticker () case ga_intro: gamestate = GS_INTRO; gameaction = ga_nothing; + C_HideConsole(); // On some systems, console is open during intro break;