X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=saveresume.c;h=dedb5bbe288a03b6581ad18895ea4183984f83ba;hb=54927c33e548c58080232f43584bdd8cbcea068d;hp=b90595b5b13253e8ba0f4c9eef3cccdb8562a58d;hpb=87855f8124b47fa530457b8b32f4f0a173be28b4;p=open-adventure.git diff --git a/saveresume.c b/saveresume.c index b90595b..dedb5bb 100644 --- a/saveresume.c +++ b/saveresume.c @@ -83,7 +83,7 @@ int suspend(void) * If ADVENT_NOSAVE is defined, gripe instead. */ #if defined ADVENT_NOSAVE || defined ADVENT_AUTOSAVE - rspeak(SAVERESUME_DISABLED) + rspeak(SAVERESUME_DISABLED); return GO_TOP; #endif FILE *fp = NULL; @@ -118,7 +118,7 @@ int resume(void) * If ADVENT_NOSAVE is defined, gripe instead. */ #if defined ADVENT_NOSAVE || defined ADVENT_AUTOSAVE - rspeak(SAVERESUME_DISABLED) + rspeak(SAVERESUME_DISABLED); return GO_TOP; #endif FILE *fp = NULL; @@ -172,7 +172,7 @@ int restore(FILE* fp) bool is_valid(struct game_t valgame) { /* Save files can be roughly grouped into three groups: - * With valid, reacheable state, with valid, but unreachable + * With valid, reachable state, with valid, but unreachable * state and with invalid state. We check that state is * valid: no states are outside minimal or maximal value */