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.cc10
1 files changed, 7 insertions, 3 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index 134ef99b35..b71211e8f9 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -124,9 +124,10 @@
#include "view.h"
#include "stash.h"
-struct crawl_environment env;
-struct player you;
-struct system_environment SysEnv;
+crawl_environment env;
+player you;
+system_environment SysEnv;
+game_state crawl_state;
std::string init_file_location; // externed in newgame.cc
@@ -2827,6 +2828,9 @@ static bool initialise(void)
viewwindow(1, false); // This just puts the view up for the first turn.
activate_notes(true);
+
+ crawl_state.need_save = true;
+
return (ret);
}