rnd-20050122-1-src
[rocksndiamonds.git] / src / screens.c
index 3d7cdf9d7873b28e4401b1581d52e474e10ab936..d6c84d81a4495eb03e19eedd99ae849bfc2c4cf2 100644 (file)
@@ -2964,6 +2964,13 @@ void HandleGameActions()
        return;
     }
 
+    if (level.native_em_level->ply1->alive == 0 &&
+       level.native_em_level->ply2->alive == 0)        /* all dead */
+      AllPlayersGone = TRUE;
+
+    if (AllPlayersGone && !TAPE_IS_STOPPED(tape))
+      TapeStop();
+
     /* --- game actions --- */
 
     if (tape.pausing)
@@ -2978,6 +2985,12 @@ void HandleGameActions()
 
     recorded_player_action = (tape.playing ? TapePlayAction() : NULL);
 
+#if 1
+    /* !!! CHECK THIS (tape.pausing is always FALSE here!) !!! */
+    if (recorded_player_action == NULL && tape.pausing)
+      return;
+#endif
+
     for (i = 0; i < MAX_PLAYERS; i++)
     {
       summarized_player_action |= stored_player[i].action;