From a4581e2f4428947f2a28df0085e72ce07142e786 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Sat, 28 Jan 2023 13:23:49 +0100 Subject: [PATCH] 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. --- src/tape.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.34.1