X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=blobdiff_plain;f=saveresume.c;h=a3dbe968ebdaf4838ea2552d6c77b6e951143721;hp=49e0021b91c55f4434935774ca29d12884357f8e;hb=4d7858d333057850b7d4635ba51441238f0721e2;hpb=85f8334e17b9e3118a73f2e9405e9db5f94ad648 diff --git a/saveresume.c b/saveresume.c index 49e0021..a3dbe96 100644 --- a/saveresume.c +++ b/saveresume.c @@ -1,6 +1,7 @@ #include #include #include +#include #include "advent.h" #include "dungeon.h" @@ -10,7 +11,7 @@ * see the history.adoc file in the source distribution for discussion. */ -#define VRSION 26 /* bump on save format change */ +#define VRSION 27 /* bump on save format change */ /* * If you change the first three members, the resume function may not properly @@ -31,12 +32,8 @@ struct save_t save; int savefile(FILE *fp, long version) /* Save game to file. No input or output from user. */ { - long i, k; - datime(&i, &k); - k = i + 650 * k; - save.savetime = k; + save.savetime = time(NULL); save.mode = -1; - save.version = (version == 0) ? VRSION : version; memcpy(&save.game, &game, sizeof(struct game_t)); @@ -88,7 +85,8 @@ int resume(void) #endif FILE *fp = NULL; - if (game.loc != 1 || game.abbrev[1] != 1) { + if (game.loc != 1 || + game.abbrev[1] != 1) { rspeak(RESUME_ABANDON); if (!yes(arbitrary_messages[THIS_ACCEPTABLE], arbitrary_messages[OK_MAN], arbitrary_messages[OK_MAN])) return GO_CLEAROBJ;