From 29ed52d50e7edb93b146bf4d53333ceb40c55481 Mon Sep 17 00:00:00 2001 From: cracker1000 Date: Sat, 9 Oct 2021 09:38:06 +0530 Subject: [PATCH] Fix find mode not highlighting WARP particles --- src/simulation/elements/WARP.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/simulation/elements/WARP.cpp b/src/simulation/elements/WARP.cpp index 617bd5d84..cc6737868 100644 --- a/src/simulation/elements/WARP.cpp +++ b/src/simulation/elements/WARP.cpp @@ -88,7 +88,7 @@ static int update(UPDATE_FUNC_ARGS) static int graphics(GRAPHICS_FUNC_ARGS) { *colr = *colg = *colb = *cola = 0; - *pixel_mode &= ~PMODE; + *pixel_mode |= NO_DECO; return 0; }