summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/travel.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/travel.h')
-rw-r--r--crawl-ref/source/travel.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/travel.h b/crawl-ref/source/travel.h
index 1375b4caf6..ecda8e5a12 100644
--- a/crawl-ref/source/travel.h
+++ b/crawl-ref/source/travel.h
@@ -447,7 +447,8 @@ private:
void fixup_levels();
private:
- std::map<level_id, LevelInfo> levels;
+ typedef std::map<level_id, LevelInfo> travel_levels_map;
+ travel_levels_map levels;
level_pos waypoints[TRAVEL_WAYPOINT_COUNT];
};