More ARB tagging.

This commit is contained in:
Eric S. Raymond 2017-06-15 07:16:39 -04:00
parent 98bf1bfcdd
commit 1d37262a16
3 changed files with 20 additions and 19 deletions

View file

@ -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(ARB_260);
if (!YES(input,200,54,54)) return GO_CLEAROBJ;
if (!YES(input,ARB_200,ARB_54,ARB_54)) return GO_CLEAROBJ;
game.saved=game.saved+5;
}
else
@ -48,7 +48,7 @@ int saveresume(FILE *input, bool resume)
/* Resume. Read a suspended game back from a file. */
if (game.loc != 1 || game.abbrev[1] != 1) {
RSPEAK(ARB_268);
if (!YES(input,200,54,54)) return GO_CLEAROBJ;
if (!YES(input,ARB_200,ARB_54,ARB_54)) return GO_CLEAROBJ;
}
}