From: Holger Schemel Date: Sat, 28 Jan 2023 12:23:49 +0000 (+0100) Subject: fixed pausing tape after replaying X-Git-Tag: 4.3.5.0~28 X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=commitdiff_plain;h=a4581e2f4428947f2a28df0085e72ce07142e786 fixed pausing tape after replaying This fixes a problem with automatically pausing tape at the end of a tape without "auto-record after replay" being activated, which leads to a pause mode that cannot be left besides pressing "stop tape". This change reverts commit 31df2f98. --- diff --git a/src/tape.c b/src/tape.c index 0a7dffc3..55991ce9 100644 --- a/src/tape.c +++ b/src/tape.c @@ -1007,7 +1007,7 @@ byte *TapePlayAction(void) if (tape.counter >= tape.length) // end of tape reached { - if (!tape.auto_play) + if (tape.warp_forward && !tape.auto_play) { TapeStopWarpForward(); TapeTogglePause(TAPE_TOGGLE_MANUAL);