From 0b19f42f11d38729aebda58f3a6af333f0260216 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Mon, 31 Mar 2025 21:00:31 +0200 Subject: [PATCH] fixed game restart button when playing non-score tapes --- src/tape.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tape.c b/src/tape.c index 35140ad4..c6978c1c 100644 --- a/src/tape.c +++ b/src/tape.c @@ -1404,7 +1404,7 @@ static boolean checkRestartGame(char *message) void TapeRestartGame(void) { - if (score_info_tape_play) + if (tape.playing) { TapeStartGamePlaying(); -- 2.34.1