follow-up, program_state

This commit is contained in:
nhmall
2024-07-13 16:31:35 -04:00
parent 72d2b0414c
commit 0eb7f109e0
67 changed files with 255 additions and 252 deletions

View File

@@ -1755,7 +1755,7 @@ restore_waterlevel(NHFILE *nhfp)
b->next = (struct bubble *) 0;
} else {
/* avoid "saving and reloading may fix this" */
svp.program_state.something_worth_saving = 0;
program_state.something_worth_saving = 0;
/* during restore, information about what level this is might not
be available so we're wishy-washy about what we describe */
impossible("No %s to restore?",
@@ -1764,7 +1764,7 @@ restore_waterlevel(NHFILE *nhfp)
: (Is_airlevel(&u.uz) || Is_airlevel(&gu.uz_save))
? "clouds"
: "air bubbles or clouds");
svp.program_state.something_worth_saving = 1;
program_state.something_worth_saving = 1;
}
}