Uncap palette lump palettes & allow flashpal palettes to display during pause

This commit is contained in:
lachwright 2020-11-16 17:37:12 +11:00
parent 4fcca22343
commit 5454068843
1 changed files with 1 additions and 5 deletions

View File

@ -203,9 +203,7 @@ void ST_doPaletteStuff(void)
{
INT32 palette;
if (paused || P_AutoPause())
palette = 0;
else if (stplyr && stplyr->flashcount)
if (stplyr && stplyr->flashcount)
palette = stplyr->flashpal;
else
palette = 0;
@ -215,8 +213,6 @@ void ST_doPaletteStuff(void)
palette = 0; // No flashpals here in OpenGL
#endif
palette = min(max(palette, 0), 13);
if (palette != st_palette)
{
st_palette = palette;