rnd-20031208-1-src
[rocksndiamonds.git] / src / tape.c
index 880c4f9ee8d3d879282c540e4587a8c84c4a1344..51dcd8a2e0d85e4b47f12267cba9fef24ae118f2 100644 (file)
@@ -687,6 +687,19 @@ void TapeQuickLoad()
   }
 }
 
+void InsertSolutionTape()
+{
+  if (!TAPE_IS_EMPTY(tape))
+    return;
+
+  LoadSolutionTape(level_nr);
+
+  if (TAPE_IS_EMPTY(tape))
+    Request("No solution tape for this level !", REQ_CONFIRM);
+
+  DrawCompleteVideoDisplay();
+}
+
 
 /* ------------------------------------------------------------------------- *
  * tape autoplay functions
@@ -768,7 +781,7 @@ void AutoPlayTape()
       continue;
     }
 
-    LoadTape(level_nr);
+    LoadSolutionTape(level_nr);
     if (TAPE_IS_EMPTY(tape))
     {
       printf("(no tape)\n");