From 67af069c9dde3e9b26fca77d405dcd60f7664716 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 9 Oct 2025 23:09:20 +0200 Subject: [PATCH] fixed Red Rock graphical bug --- celldrawer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/celldrawer.cpp b/celldrawer.cpp index ef028554..c4e883ad 100644 --- a/celldrawer.cpp +++ b/celldrawer.cpp @@ -2361,7 +2361,7 @@ void celldrawer::draw_wall_full() { auto col = fcol; if(patterns::whichShape == '^') poly_outline = darkena(fcol, fd, flooralpha); if(sha.top == SIDE::WALL) col = wcol_star; - else if(sha.top >= SIDE::RED1) col = wcol; + else if(sha.top >= SIDE::RED1 && wmspatial) col = wcol; auto sf = sha.top; if(!wmspatial) sf = SIDE::FLOOR;