fixed wording of some request texts
[rocksndiamonds.git] / src / tape.c
index 4efba84a76f7c05072ca49121845334cc744b940..71f707ced8a8ed3e1ade522fbb0940379c54f387 100644 (file)
@@ -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;
   }
@@ -1195,12 +1195,19 @@ void TapeQuickSave(void)
   if (game_status != GAME_MODE_PLAYING)
     return;
 
+  if (!tape.recording)
+  {
+    Request("No recording that could be saved!", REQ_CONFIRM);
+
+    return;
+  }
+
   if (tape.recording)
     TapeHaltRecording();       // prepare tape for saving on-the-fly
 
   if (TAPE_IS_EMPTY(tape))
   {
-    Request("No tape that can be saved!", REQ_CONFIRM);
+    Request("No tape that could be saved!", REQ_CONFIRM);
 
     return;
   }