mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-09-02 02:37:55 +00:00
refactored some XLAT calls for automated analysis, fixing some bugs on the way
This commit is contained in:
@@ -1269,7 +1269,10 @@ EX namespace peace {
|
||||
}
|
||||
|
||||
EX void showMenu() {
|
||||
string title = XLAT(otherpuzzles ? (explore_other ? "exploration" : "puzzles") : "memory game");
|
||||
string title =
|
||||
!otherpuzzles ? XLAT("memory game") :
|
||||
explore_other ? XLAT("exploration") :
|
||||
XLAT("puzzles");
|
||||
dialog::init(title, 0x40A040, 150, 100);
|
||||
|
||||
int kind = 0;
|
||||
|
Reference in New Issue
Block a user