HWR_ProjectSprite: Fix messed up encore remap check (resolves #1224)

This commit is contained in:
toaster 2024-04-14 20:26:29 +01:00
parent f29ed06e92
commit db9d9059b9

View file

@ -5098,7 +5098,7 @@ static void HWR_ProjectSprite(mobj_t *thing)
{ {
vis->colormap = colormaps; vis->colormap = colormaps;
if (encoremap && (thing->flags & (MF_SCENERY|MF_NOTHINK)) && !(thing->flags & MF_DONTENCOREMAP)) if (encoremap && !(thing->flags & MF_DONTENCOREMAP))
vis->colormap += COLORMAP_REMAPOFFSET; vis->colormap += COLORMAP_REMAPOFFSET;
} }