summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acr.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/acr.cc')
-rw-r--r--crawl-ref/source/acr.cc7
1 files changed, 1 insertions, 6 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index 527b14104a..74a12e39d7 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -145,9 +145,6 @@ char info[ INFO_SIZE ]; // messaging queue extern'd everywhere {dlb}
int stealth; // externed in view.cc
char use_colour = 1;
-// set to true once a new game starts or an old game loads
-bool game_has_started = false;
-
// Clockwise, around the compass from north (same order as enum RUN_DIR)
const struct coord_def Compass[8] =
{
@@ -3021,7 +3018,7 @@ static bool initialise(void)
// Load macros
macro_init();
- game_has_started = true;
+ crawl_state.need_save = true;
calc_hp();
calc_mp();
@@ -3087,8 +3084,6 @@ static bool initialise(void)
activate_notes(true);
- crawl_state.need_save = true;
-
return (newc);
}