X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Ftape.c;h=a3f8e9c5683bb44c93d8f4b54d9a4f1482ddfdc2;hb=0e661055e1233e585fb259832e4884f68d3833a4;hp=7a896e807bf79e7ebb6864cf0e50e09670f718fb;hpb=1a9252c7cfc77d9d616bd0a3f538cce2d24e2f74;p=rocksndiamonds.git diff --git a/src/tape.c b/src/tape.c index 7a896e80..a3f8e9c5 100644 --- a/src/tape.c +++ b/src/tape.c @@ -493,7 +493,7 @@ void TapeDeactivateDisplayOff(boolean redraw_display) if (redraw_display) { - RedrawPlayfield(TRUE, 0,0,0,0); + RedrawPlayfield(); DrawGameDoorValues(); } } @@ -747,7 +747,9 @@ void TapeTogglePause(boolean toggle_manual) } } - if (game_status == GAME_MODE_PLAYING && CheckEngineSnapshotList()) + if (setup.show_snapshot_buttons && + game_status == GAME_MODE_PLAYING && + CheckEngineSnapshotList()) { if (tape.pausing) MapUndoRedoButtons(); @@ -1195,7 +1197,12 @@ void AutoPlayTape() printf("playing tape ... "); TapeStartGamePlaying(); - TapeStartWarpForward(); + + if (global.autoplay_mode == AUTOPLAY_FFWD) + tape.fast_forward = TRUE; + + if (global.autoplay_mode != AUTOPLAY_PLAY) + TapeStartWarpForward(); return; }