Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion prboom2/src/gl_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ void gld_FillPatch(int lump, int x, int y, int width, int height, enum patch_tra
// use colormaps[0] as a fallback in such a case.
const lighttable_t *gld_GetActiveColormap()
{
if (V_IsAutomapLightmodeIndexed() || V_IsMenuLightmodeIndexed())
if (V_IsUILightmodeIndexed() || V_IsAutomapLightmodeIndexed() || V_IsMenuLightmodeIndexed())
return colormaps[0];
else if (fixedcolormap)
return fixedcolormap;
Expand Down