HWR_ProjectSprite: Fix messed up encore remap check (resolves #1224)
This commit is contained in:
parent
08e1dd870e
commit
db427af153
1 changed files with 1 additions and 1 deletions
|
|
@ -5283,7 +5283,7 @@ static void HWR_ProjectSprite(mobj_t *thing)
|
|||
{
|
||||
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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue