1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-27 14:37:16 +00:00

marked mines are now displayed at full intensity when ispeed==0

This commit is contained in:
Zeno Rogue 2022-05-21 17:08:57 +02:00
parent c9d90c1c64
commit e32f1a4670

View File

@ -538,7 +538,7 @@ void celldrawer::setcolors() {
if(mine::marked_safe(c))
fcol = wcol = gradient(wcol, 0x40FF40, 0, 0.2, 1);
else if(mine::marked_mine(c))
fcol = wcol = gradient(wcol, 0xFF4040, -1, sintick(100), 1);
fcol = wcol = gradient(wcol, 0xFF4040, -1, vid.ispeed ? sintick(100) : 1, 1);
goto fallthrough;
#endif