From db9d9059b9a20a55b1f952d42539a8c61b5dae06 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 97cd5cad6..ed62ac236 100644 --- a/src/hardware/hw_main.c +++ b/src/hardware/hw_main.c @@ -5098,7 +5098,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; }