summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/files.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/files.cc')
-rw-r--r--crawl-ref/source/files.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/files.cc b/crawl-ref/source/files.cc
index ec3ec235aa..e473a1a23a 100644
--- a/crawl-ref/source/files.cc
+++ b/crawl-ref/source/files.cc
@@ -1220,7 +1220,7 @@ void save_game(bool leave_game, const char *farewellmsg)
FILE *stashf = fopen(stashFile.c_str(), "wb");
if (stashf)
{
- stashes.save(stashf);
+ StashTrack.save(stashf);
fclose(stashf);
DO_CHMOD_PRIVATE(stashFile.c_str());
}
@@ -1421,7 +1421,7 @@ void restore_game(void)
FILE *stashf = fopen(stashFile.c_str(), "rb");
if (stashf)
{
- stashes.load(stashf);
+ StashTrack.load(stashf);
fclose(stashf);
}