From 31edc3255754f9fc39c652d28463a6d5884a6ee1 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Sat, 14 May 2022 11:09:16 +0200 Subject: [PATCH] fixed continuing from hall of fame after playing on Android platform --- src/screens.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/screens.c b/src/screens.c index d7b7aab0..28deabb9 100644 --- a/src/screens.c +++ b/src/screens.c @@ -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; -- 2.34.1