summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/view.cc
diff options
context:
space:
mode:
authorShmuale Mark <shm.mark@gmail.com>2014-04-10 12:29:55 -0400
committerShmuale Mark <shm.mark@gmail.com>2014-04-17 13:29:49 -0400
commit4e7d99abef2cb048052ff3dfafa338b19a7cb133 (patch)
tree05394b2181b9dd4e1e8a8053cee108861460cc1c /crawl-ref/source/view.cc
parent0f93c8869aae954d4877d32ec8d97c7972f35504 (diff)
downloadcrawl-ref-4e7d99abef2cb048052ff3dfafa338b19a7cb133.tar.gz
crawl-ref-4e7d99abef2cb048052ff3dfafa338b19a7cb133.zip
Remove the clean_map option.
It didn't have a very clear use case and if you really want to reproduce it, you can press ^C every so often. Also clean up the options documentation a bit.
Diffstat (limited to 'crawl-ref/source/view.cc')
-rw-r--r--crawl-ref/source/view.cc7
1 files changed, 2 insertions, 5 deletions
diff --git a/crawl-ref/source/view.cc b/crawl-ref/source/view.cc
index 2830151342..67046469f6 100644
--- a/crawl-ref/source/view.cc
+++ b/crawl-ref/source/view.cc
@@ -861,10 +861,7 @@ static int player_view_update_at(const coord_def &gc)
// We remove any references to mcache when
// writing to the background.
- if (Options.clean_map)
- env.tile_bk_fg(gc) = get_clean_map_idx(env.tile_fg(ep));
- else
- env.tile_bk_fg(gc) = env.tile_fg(ep);
+ env.tile_bk_fg(gc) = env.tile_fg(ep);
env.tile_bk_bg(gc) = env.tile_bg(ep);
env.tile_bk_cloud(gc) = env.tile_cloud(ep);
#endif
@@ -913,7 +910,7 @@ static void _draw_out_of_bounds(screen_cell_t *cell)
static void _draw_outside_los(screen_cell_t *cell, const coord_def &gc)
{
// Outside the env.show area.
- cglyph_t g = get_cell_glyph(gc, Options.clean_map);
+ cglyph_t g = get_cell_glyph(gc);
cell->glyph = g.ch;
cell->colour = g.col;