From 75ecd173b6f05c591fe74a2d3fdcfc533fb1eef2 Mon Sep 17 00:00:00 2001 From: Cacodemon345 Date: Mon, 17 May 2021 00:01:14 +0600 Subject: [PATCH] Destroy FStartupScreen before initializing video Fixes terminal output cutoff on console tab completion on Unix systems. --- source/core/gamecontrol.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/source/core/gamecontrol.cpp b/source/core/gamecontrol.cpp index cbc366675..fb628085d 100644 --- a/source/core/gamecontrol.cpp +++ b/source/core/gamecontrol.cpp @@ -1013,6 +1013,7 @@ int RunGame() lookups.postLoadLookups(); FMaterial::SetLayerCallback(setpalettelayer); if (GameStartupInfo.Name.IsNotEmpty()) I_SetWindowTitle(GameStartupInfo.Name); + DeleteStartupScreen(); V_Init2(); twod->Begin(screen->GetWidth(), screen->GetHeight());