From 473e604c52b8d9b525f11d46ef3ab0d45c0f3acf Mon Sep 17 00:00:00 2001 From: stpohle Date: Tue, 6 Jan 2004 00:25:53 +0000 Subject: [PATCH] background will be always new painted if the video mode was entered and the multiplayer wait screen popped up. --- src/configuration.c | 4 +++- src/multiwait.c | 5 ++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/configuration.c b/src/configuration.c index 363fa5a..545a925 100644 --- a/src/configuration.c +++ b/src/configuration.c @@ -370,7 +370,9 @@ config_video () done = 1; break; } - }; + }; + draw_logo (); + SDL_Flip (gfx.screen); }; diff --git a/src/multiwait.c b/src/multiwait.c index 193b463..ab4bbe3 100644 --- a/src/multiwait.c +++ b/src/multiwait.c @@ -130,7 +130,6 @@ mw_draw_status () dest.h = y; dest.w = gfx.res.y; gfx_blitupdaterectadd (&dest); - mw_player = y; }; @@ -252,6 +251,7 @@ wait_for_players () mw_init (); draw_logo (); + SDL_Flip (gfx.screen); while (!done && bman.state == GS_wait) { @@ -408,5 +408,8 @@ wait_for_players () s_delay (25); } + draw_logo (); + SDL_Flip (gfx.screen); + mw_shutdown (); };