From d4d8a4410fbd9239df7ca3359184fc44d5e15e56 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Sat, 26 Nov 2022 11:30:12 +0100 Subject: [PATCH] fixed wording of some request texts --- src/tape.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tape.c b/src/tape.c index 6b3523d4..71f707ce 100644 --- a/src/tape.c +++ b/src/tape.c @@ -1187,7 +1187,7 @@ void TapeQuickSave(void) { if (game_status == GAME_MODE_MAIN) { - Request("No game that can be saved!", REQ_CONFIRM); + Request("No game that could be saved!", REQ_CONFIRM); return; } @@ -1197,7 +1197,7 @@ void TapeQuickSave(void) if (!tape.recording) { - Request("No recording that can be saved!", REQ_CONFIRM); + Request("No recording that could be saved!", REQ_CONFIRM); return; } @@ -1207,7 +1207,7 @@ void TapeQuickSave(void) if (TAPE_IS_EMPTY(tape)) { - Request("No tape that can be saved!", REQ_CONFIRM); + Request("No tape that could be saved!", REQ_CONFIRM); return; } -- 2.34.1