summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 bf29bea20a..e857b5f177 100644
--- a/crawl-ref/source/files.cc
+++ b/crawl-ref/source/files.cc
@@ -1120,7 +1120,7 @@ bool load( dungeon_feature_type stair_taken, load_mode_type load_mode,
_do_lost_items(old_level_type);
#ifdef USE_TILE
- if (make_changes)
+ if (load_mode != LOAD_VISITOR)
{
tiles.clear_minimap();
tiles.load_dungeon(NULL, crawl_view.vgrdc);
@@ -1248,7 +1248,7 @@ bool load( dungeon_feature_type stair_taken, load_mode_type load_mode,
}
#ifdef USE_TILE
- if (make_changes)
+ if (load_mode != LOAD_VISITOR)
TileNewLevel(just_created_level);
#endif