X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=saveresume.c;h=ab47a3bfa56fd84a19c30e01848a7425963fc1a4;hb=db281a96d70a43c6a6d5b516eceb6e4f67637c57;hp=f4c694fddb66a5feca64cd9d6eaab2570699139c;hpb=0a30176a8c60832e140991c177e8924c7a9ad6d5;p=open-adventure.git diff --git a/saveresume.c b/saveresume.c index f4c694f..ab47a3b 100644 --- a/saveresume.c +++ b/saveresume.c @@ -2,7 +2,6 @@ #include #include "advent.h" -#include "database.h" #include "newdb.h" #include "linenoise/linenoise.h" @@ -119,7 +118,8 @@ int restore(FILE* fp) rspeak(VERSION_SKEW, save.version / 10, MOD(save.version, 10), VRSION / 10, MOD(VRSION, 10)); } else { memcpy(&game, &save.game, sizeof(struct game_t)); - game.zzword = rndvoc(3, game.zzword); + //game.zzword = rndvoc(3, game.zzword); + make_zzword(game.zzword); } return GO_TOP; }