From 456850f38548906c013fb29dd03f2171021ee9ec Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Wed, 13 Oct 2021 11:32:49 +0200 Subject: [PATCH] added asking for and uploading tapes to score server after changing user --- src/init.c | 1 + src/screens.c | 3 +++ 2 files changed, 4 insertions(+) diff --git a/src/init.c b/src/init.c index 4b8753ff..7802e8e9 100644 --- a/src/init.c +++ b/src/init.c @@ -6332,6 +6332,7 @@ void OpenAll(void) DrawMainMenu(); + // needed once to offer uploading score tapes after starting the program CheckUploadTapes(); #if 0 diff --git a/src/screens.c b/src/screens.c index 339b8b6c..47777fa2 100644 --- a/src/screens.c +++ b/src/screens.c @@ -5116,6 +5116,9 @@ static void HandleChooseTree(int mx, int my, int dx, int dy, int button, SetGameStatus(GAME_MODE_MAIN); DrawMainMenu(); + + // needed once to offer uploading score tapes after changing user + CheckUploadTapes(); } } } -- 2.34.1