1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-17 18:54:48 +00:00

mobile:: fixed an incorrect button shown in the game menu

This commit is contained in:
Zeno Rogue 2022-07-12 10:39:47 +02:00
parent dabc227cbe
commit ae170378f5

View File

@ -508,7 +508,7 @@ EX void showGameMenu() {
});
}
if(casual || ISMOBILE) {
if(savecount)
if(casual && savecount)
dialog::addItem(XLAT("load (%1 turns passed)", its(turncount - save_turns)), SDLK_F9);
else
dialog::addItem(XLAT("how to find an Orb of Safety?"), SDLK_F9);