From: Holger Schemel Date: Sun, 2 Apr 2023 18:24:51 +0000 (+0200) Subject: fixed showing program title headers and footers on loading screen X-Git-Tag: 4.3.5.4~4 X-Git-Url: https://git.artsoft.org/?a=commitdiff_plain;ds=sidebyside;h=7680c02a2b77086db2cd5ffec28cafe80d4ba236;p=rocksndiamonds.git 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. --- 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);