From a636b6d7a155972b6fdf5b4b8b0ffac20308f845 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Sat, 26 Nov 2022 11:27:30 +0100 Subject: [PATCH] fixed trying to quick-save tape when playing game without recording --- src/tape.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/tape.c b/src/tape.c index 4efba84a..6b3523d4 100644 --- a/src/tape.c +++ b/src/tape.c @@ -1195,6 +1195,13 @@ void TapeQuickSave(void) if (game_status != GAME_MODE_PLAYING) return; + if (!tape.recording) + { + Request("No recording that can be saved!", REQ_CONFIRM); + + return; + } + if (tape.recording) TapeHaltRecording(); // prepare tape for saving on-the-fly -- 2.34.1