summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/initfile.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/initfile.cc')
-rw-r--r--crawl-ref/source/initfile.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/crawl-ref/source/initfile.cc b/crawl-ref/source/initfile.cc
index fa50bf5ab3..35582ac183 100644
--- a/crawl-ref/source/initfile.cc
+++ b/crawl-ref/source/initfile.cc
@@ -825,6 +825,7 @@ void game_options::reset_options()
tile_water_col = MAP_MDGREY;
tile_lava_col = MAP_MDGREY;
tile_excluded_col = MAP_DKCYAN;
+ tile_excl_centre_col = MAP_DKBLUE;
#endif
#ifdef WIN32TILES
@@ -2834,6 +2835,11 @@ void game_options::read_option_line(const std::string &str, bool runscript)
tile_excluded_col =
_str_to_tile_colour(field);
}
+ else if (key == "tile_excl_centre_col" || key == "tile_excl_center_col")
+ {
+ tile_excl_centre_col =
+ _str_to_tile_colour(field);
+ }
#endif
#ifdef WIN32TILES