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:
parent
c9d90c1c64
commit
e32f1a4670
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user