fixed continuing from hall of fame after playing on Android platform
authorHolger Schemel <info@artsoft.org>
Sat, 14 May 2022 09:09:16 +0000 (11:09 +0200)
committerHolger Schemel <info@artsoft.org>
Sat, 14 May 2022 09:14:52 +0000 (11:14 +0200)
src/screens.c

index d7b7aab06fec3fab3ef4c56128fcd1eede25b47d..28deabb99892e96178d62af3226efc7b0860ab44 100644 (file)
@@ -4810,8 +4810,8 @@ static void HandleChooseTree(int mx, int my, int dx, int dy, int button,
   }
 
 #if defined(PLATFORM_ANDROID)
-  // touching the screen anywhere continues playing the next level
-  if ((mx || my) && scores.continue_playing)
+  // directly continue when touching the screen after playing
+  if ((mx || my) && scores.continue_on_return)
   {
     mx = my = 0;
     button = MB_MENU_CHOICE;