1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-06-26 07:02:49 +00:00

Only show trees in default colors in HW if higher_contrast is set.

This commit is contained in:
Jacob Mandelson 2025-06-21 23:21:25 -07:00
parent bf9665392d
commit 2012520e8f

View File

@ -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;
}
}
}