mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-29 19:40:35 +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(numerical_minefield) {
|
||||||
if(mines) {
|
if(mines) {
|
||||||
string label = its(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 {
|
else {
|
||||||
|
Loading…
Reference in New Issue
Block a user