rnd-19981010-2
[rocksndiamonds.git] / src / game.c
index 640c248624ddd158dd29f6d33d2a9f3b06e677e0..f6e226bc7fcde6e693b7dc065d7596489b456564 100644 (file)
@@ -2913,6 +2913,13 @@ void GameActions(byte player_action)
     }
   }
 
+
+  if (tape.pausing || (tape.playing && !TapePlayDelay()))
+    return;
+  else if (tape.recording)
+    TapeRecordDelay();
+
+
   if (tape.playing)
     recorded_player_action = TapePlayAction();
   else
@@ -2959,10 +2966,12 @@ void GameActions(byte player_action)
 
   ScrollScreen(NULL, SCROLL_GO_ON);
 
+  /*
   if (tape.pausing || (tape.playing && !TapePlayDelay()))
     return;
   else if (tape.recording)
     TapeRecordDelay();
+  */
 
   FrameCounter++;
   TimeFrames++;