From 7680c02a2b77086db2cd5ffec28cafe80d4ba236 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Sun, 2 Apr 2023 20:24:51 +0200 Subject: [PATCH] fixed showing program title headers and footers on loading screen This got lost when adding support for background image for loading screen in commit b1734380. --- src/init.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/init.c b/src/init.c index 718e1ca2..4407567a 100644 --- a/src/init.c +++ b/src/init.c @@ -5792,10 +5792,6 @@ static void InitGfx(void) InitFontGraphicInfo(); - DrawProgramInfo(); - - DrawInitTextHead("Loading graphics"); - InitMenuDesignSettings_Static(); // initialize settings for initial images with default values @@ -5911,6 +5907,8 @@ static void InitGfx(void) ClearRectangleOnBackground(window, 0, 0, WIN_XSIZE, WIN_YSIZE); + DrawProgramInfo(); + InitGfxDrawBusyAnimFunction(DrawInitAnim); InitGfxDrawGlobalAnimFunction(DrawGlobalAnimations); InitGfxDrawGlobalBorderFunction(DrawMaskedBorderToTarget); -- 2.34.1