1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-03-26 21:37:02 +00:00

validity appears in better place, lands colored

This commit is contained in:
Zeno Rogue 2017-11-03 19:41:42 +01:00
parent 1e4df087c2
commit c195fc5ad5

View File

@ -718,7 +718,7 @@ void showEuclideanMenu() {
if(i < 26) ch = 'a' + i;
else ch = 'A' + (i-26);
string validclasses[4] = {"", " (½)", "", " (!)"};
string s = XLAT1(linf[l].name) + validclasses[isLandValid(l)];
string s = XLAT1(linf[l].name);
if(landvisited[l]) {
dialog::addBoolItem(s, l == specialland, ch);
@ -726,6 +726,9 @@ void showEuclideanMenu() {
else {
dialog::addSelItem(s, XLAT("(locked)"), ch);
}
dialog::lastItem().color = linf[l].color;
dialog::lastItem().value += validclasses[isLandValid(l)];
}
dialog::addBreak(50);
if(chaosUnlocked && !quotient && !euclid && !sphere)