Real test coverage dor SAVE_TAMPERING.
[open-adventure.git] / saveresume.c
index afd04d37af00570a385e85b545bdad1fcced9352..c53ee4950ff9942868ec2ad4517497739030a421 100644 (file)
@@ -161,8 +161,8 @@ int restore(FILE* fp)
     if (save.version != VRSION) {
         rspeak(VERSION_SKEW, save.version / 10, MOD(save.version, 10), VRSION / 10, MOD(VRSION, 10));
     } else if (!is_valid(save.game)) {
-       rspeak(SAVE_TAMPERING); // LCOV_EXCL_LINE
-       exit(EXIT_SUCCESS);     // LCOV_EXCL_LINE
+       rspeak(SAVE_TAMPERING);
+       exit(EXIT_SUCCESS);
     } else {
         game = save.game;
     }