From b0082cbe1518d7cc743cf708d7047a9fbd6ded86 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Mon, 5 Dec 2022 22:50:33 +0100 Subject: [PATCH] removed condition that is always true --- src/tape.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/tape.c b/src/tape.c index c0939acd..4ec51529 100644 --- a/src/tape.c +++ b/src/tape.c @@ -1199,8 +1199,7 @@ void TapeQuickSave(void) return; } - if (tape.recording) - TapeHaltRecording(); // prepare tape for saving on-the-fly + TapeHaltRecording(); // prepare tape for saving on-the-fly if (TAPE_IS_EMPTY(tape)) { -- 2.34.1