From 2012520e8f40e8da695b7edefc7a3c6fe68db43b Mon Sep 17 00:00:00 2001 From: Jacob Mandelson Date: Sat, 21 Jun 2025 23:21:25 -0700 Subject: [PATCH] Only show trees in default colors in HW if higher_contrast is set. --- celldrawer.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/celldrawer.cpp b/celldrawer.cpp index 018b654e..258751d2 100644 --- a/celldrawer.cpp +++ b/celldrawer.cpp @@ -510,8 +510,10 @@ void celldrawer::setcolors() { if(c->monst == moFriendlyGhost) fcol = gradient(fcol, fghostcolor(c), 0, .5, 1); - /* if(c->wall == waSmallTree) wcol = 0x006000; - else if(c->wall == waBigTree) wcol = 0x008000; */ + if (!higher_contrast) { + if(c->wall == waSmallTree) wcol = 0x004000; + else if(c->wall == waBigTree) wcol = 0x008000; + } } }