From ae170378f508029c3af78bf604f3ab2bee3d5e5b Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 12 Jul 2022 10:39:47 +0200 Subject: [PATCH] mobile:: fixed an incorrect button shown in the game menu --- quit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quit.cpp b/quit.cpp index ad994436..ecfa425a 100644 --- a/quit.cpp +++ b/quit.cpp @@ -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);