From: Holger Schemel Date: Sat, 14 May 2022 09:09:16 +0000 (+0200) Subject: fixed continuing from hall of fame after playing on Android platform X-Git-Tag: 4.3.2.2~23 X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=commitdiff_plain;h=31edc3255754f9fc39c652d28463a6d5884a6ee1 fixed continuing from hall of fame after playing on Android platform --- 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;