From f3d82fe46ab00cacbe18b74d51fcbbfc8fa489dd Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Sun, 17 Apr 2022 01:10:01 +0200 Subject: [PATCH] added message request if local score tape not found --- src/tape.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/tape.c b/src/tape.c index e9b7f4cc..50335073 100644 --- a/src/tape.c +++ b/src/tape.c @@ -1406,7 +1406,13 @@ boolean PlayScoreTape(int entry_nr) boolean download_tape = (!fileExists(tape_filename)); if (download_tape && entry->id == -1) + { + FadeSkipNextFadeIn(); + + Request("Cannot find score tape!", REQ_CONFIRM); + return FALSE; + } server_scores.tape_downloaded = FALSE; -- 2.34.1