From f4bc59d876899c11dd114bd570653eccbce3e662 Mon Sep 17 00:00:00 2001 From: Fabian Greffrath Date: Thu, 12 Aug 2021 08:17:21 +0200 Subject: [PATCH] fix conditional in the previous commit --- prboom2/src/st_stuff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prboom2/src/st_stuff.c b/prboom2/src/st_stuff.c index b6af5a25b..56bced7c0 100644 --- a/prboom2/src/st_stuff.c +++ b/prboom2/src/st_stuff.c @@ -439,7 +439,7 @@ static void ST_refreshBackground(void) flags = VPT_ALIGN_BOTTOM; // Applies palette to backfill - if (V_GetMode() == VID_MODE32) + if (V_GetMode() == VID_MODE15 || V_GetMode() == VID_MODE16 || V_GetMode() == VID_MODE32) R_FillBackScreen(); V_DrawNumPatch(ST_X, y, BG, stbarbg.lumpnum, CR_DEFAULT, flags);