added message request if local score tape not found
[rocksndiamonds.git] / src / tape.c
index 032ea833de4328e0cc86b58f63f595a047c7813b..5033507342b4f8029d893737555ce8ccf5972cab 100644 (file)
@@ -1405,8 +1405,14 @@ boolean PlayScoreTape(int entry_nr)
   char *tape_filename = getScoreTapeFilename(entry->tape_basename, level_nr);
   boolean download_tape = (!fileExists(tape_filename));
 
-  if (entry->id == -1)
+  if (download_tape && entry->id == -1)
+  {
+    FadeSkipNextFadeIn();
+
+    Request("Cannot find score tape!", REQ_CONFIRM);
+
     return FALSE;
+  }
 
   server_scores.tape_downloaded = FALSE;