From db427af1535d67aed50aeb1638e6675704cbcf1d Mon Sep 17 00:00:00 2001 From: toaster Date: Sun, 14 Apr 2024 20:26:29 +0100 Subject: [PATCH] HWR_ProjectSprite: Fix messed up encore remap check (resolves #1224) --- src/hardware/hw_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hardware/hw_main.c b/src/hardware/hw_main.c index fff97df24..80a3ae52e 100644 --- a/src/hardware/hw_main.c +++ b/src/hardware/hw_main.c @@ -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; }