From ba3e89665534d5ab6a38e9a86e1874631e4a1fe8 Mon Sep 17 00:00:00 2001 From: toaster Date: Sun, 28 Nov 2021 20:15:42 +0000 Subject: [PATCH] Make the game loading-bar miniwindow do OS polling, to allow you to tab back into it without it being considered frozen by the OS. --- src/console.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/console.c b/src/console.c index 5eda4f7fa..4d71e74d3 100644 --- a/src/console.c +++ b/src/console.c @@ -1916,6 +1916,8 @@ void CON_SetLoadingProgress(con_loadprogress_t newStep) if (con_startup_loadprogress < LOADED_ISTARTUPGRAPHICS) // rendering not possible? return; CON_DrawLoadBar(); // here we display the console text + I_OsPolling(); + I_UpdateNoBlit(); I_FinishUpdate(); // page flip or blit buffer }