1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-02-01 07:20:15 +00:00

text fixes, PL translation updated

This commit is contained in:
Zeno Rogue
2019-01-18 21:03:55 +01:00
parent b1614aa246
commit c80df92acb
8 changed files with 106 additions and 30 deletions

View File

@@ -367,16 +367,18 @@ struct debugScreen {
dialog::addSelItem("barrier left", dnameof2(what->barleft), 0);
dialog::addSelItem("barrier right", dnameof2(what->barright), 0);
if(what->item == itBabyTortoise) {
dialog::addSelItem("baby Tortoise flags", itsh(tortoise::babymap[what]), 'B');
dialog::addSelItem(XLAT("baby Tortoise flags"), itsh(tortoise::babymap[what]), 'B');
dialog::add_action([what] () {
dialog::editNumber(tortoise::babymap[what], 0, (1<<21)-1, 1, getBits(what), "", "");
dialog::use_hexeditor();
});
}
if(what->monst == moTortoise) {
dialog::addSelItem("adult Tortoise flags", itsh(tortoise::emap[what]), 'A');
dialog::addSelItem(XLAT("adult Tortoise flags"), itsh(tortoise::emap[what]), 'A');
dialog::add_action([what] () {
tortoise::emap[what] = tortoise::getb(what);
dialog::editNumber(tortoise::emap[what], 0, (1<<21)-1, 1, getBits(what), "", "");
dialog::use_hexeditor();
});
}
dialog::addBreak(50);
@@ -426,7 +428,7 @@ struct debugScreen {
}
}
else {
dialog::addItem("click a cell to view its data", 0);
dialog::addItem(XLAT("click a cell to view its data"), 0);
dialog::addBreak(1000);
}
dialog::addBack();