From 31df2f981ed2fa42009f173f1f908b802e427268 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Fri, 25 Nov 2022 21:12:28 +0100 Subject: [PATCH] added pausing tape after replaying not only for warp mode --- src/tape.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tape.c b/src/tape.c index 240a1492..eb825c8d 100644 --- a/src/tape.c +++ b/src/tape.c @@ -1000,7 +1000,7 @@ byte *TapePlayAction(void) if (tape.counter >= tape.length) // end of tape reached { - if (tape.warp_forward && !tape.auto_play) + if (!tape.auto_play) { TapeStopWarpForward(); TapeTogglePause(TAPE_TOGGLE_MANUAL); -- 2.34.1