X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=blobdiff_plain;f=saveresume.c;h=340ea65cd6dc53e3757b5485551cd521d198ba1a;hp=348006562c0a7c083d4a162450c2238e46f8a729;hb=a02b3879998e78555852f4a81a19e80694e38cdc;hpb=d85ef403af225476e9c3504c3ca63c439972fcf3 diff --git a/saveresume.c b/saveresume.c index 3480065..340ea65 100644 --- a/saveresume.c +++ b/saveresume.c @@ -40,7 +40,7 @@ int saveresume(FILE *input, bool resume) * some points (so can't win by using saved games to retry * battles or to start over after learning zzword). */ RSPEAK(260); - if (!YES(input,200,54,54)) return(2012); + if (!YES(input,200,54,54)) return GO_CLEAROBJ; game.saved=game.saved+5; } else @@ -48,14 +48,14 @@ int saveresume(FILE *input, bool resume) /* Resume. Read a suspended game back from a file. */ if (game.loc != 1 || game.abbrev[1] != 1) { RSPEAK(268); - if (!YES(input,200,54,54)) return(2012); + if (!YES(input,200,54,54)) return GO_CLEAROBJ; } } while (fp == NULL) { name = linenoise("\nFile name: "); if (name == NULL) - return(2000); + return GO_TOP; fp = fopen(name,(resume ? READ_MODE : WRITE_MODE)); if (fp == NULL) printf("Can't open file %s, try again.\n", name); @@ -89,7 +89,7 @@ int saveresume(FILE *input, bool resume) OBJTXT[OYSTER] = save.bivalve; game.zzword=RNDVOC(3,game.zzword); } - return 2000; + return GO_TOP; } }