mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-20 07:30:26 +00:00
fixed numerical_minefield display to darken numbers correctly
This commit is contained in:
parent
6039c40bc2
commit
d0a5c52889
@ -1615,7 +1615,7 @@ void celldrawer::draw_features() {
|
||||
if(numerical_minefield) {
|
||||
if(mines) {
|
||||
string label = its(mines);
|
||||
queuestr(V, mines >= 10 ? .5 : 1, label, minecolors[mines%10], 8);
|
||||
queuestr(V, mines >= 10 ? .5 : 1, label, darkened(minecolors[mines%10]), 8);
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
Loading…
Reference in New Issue
Block a user