From 22846a3ec9df44b291989369ae220060ecd57bcb Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Mon, 5 Dec 2022 22:45:43 +0100 Subject: [PATCH] merged two conditions when attempting to quick-save tape --- src/tape.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/tape.c b/src/tape.c index 71f707ce..c0939acd 100644 --- a/src/tape.c +++ b/src/tape.c @@ -1185,16 +1185,13 @@ static void TapeSingleStep(void) void TapeQuickSave(void) { - if (game_status == GAME_MODE_MAIN) + if (game_status != GAME_MODE_PLAYING) { Request("No game that could be saved!", REQ_CONFIRM); return; } - if (game_status != GAME_MODE_PLAYING) - return; - if (!tape.recording) { Request("No recording that could be saved!", REQ_CONFIRM); -- 2.34.1