Skip to content
This repository has been archived by the owner on Jun 23, 2023. It is now read-only.

Commit

Permalink
fix conditional in the previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiangreffrath committed Aug 12, 2021
1 parent ff8c3ed commit f4bc59d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prboom2/src/st_stuff.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit f4bc59d

Please sign in to comment.