diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/strife/d_main.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/strife/d_main.c b/src/strife/d_main.c index a3179359..3d0d269c 100644 --- a/src/strife/d_main.c +++ b/src/strife/d_main.c @@ -1122,14 +1122,11 @@ static byte *rawgfx_startbot; // static void D_IntroBackground(void) { - patch_t *panel0; - if(!showintro) return; - // Slam up PANEL0 to fill the background entirely (wasn't needed in vanilla) - panel0 = W_CacheLumpName("PANEL0", PU_CACHE); - V_DrawPatch(0, 0, panel0); + // Fill the background entirely (wasn't needed in vanilla) + V_DrawFilledBox(0, 0, SCREENWIDTH, SCREENHEIGHT, 0); // Strife cleared the screen somewhere in the low-level code between the // intro and the titlescreen, so this is to take care of that and get |