From 65ea93236ca227c783a78f5ca860cc27dfbae5e8 Mon Sep 17 00:00:00 2001 From: Marcus Minhorst Date: Thu, 28 Aug 2025 17:00:43 -0400 Subject: [PATCH] Fix sdl window not showing on some systems --- src/d_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/d_main.cpp b/src/d_main.cpp index aaa393f06..df64adb84 100644 --- a/src/d_main.cpp +++ b/src/d_main.cpp @@ -917,7 +917,7 @@ void D_Display () if (nodrawers || screen == NULL) return; // for comparative timing / profiling - if (!AppActive && (screen->IsFullscreen() || !vid_activeinbackground)) + if (!AppActive && !setmodeneeded && (screen->IsFullscreen() || !vid_activeinbackground)) { return; }