summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/travel.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/travel.cc')
-rw-r--r--crawl-ref/source/travel.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/travel.cc b/crawl-ref/source/travel.cc
index 680c66f191..39674e8660 100644
--- a/crawl-ref/source/travel.cc
+++ b/crawl-ref/source/travel.cc
@@ -255,10 +255,10 @@ static void _tile_exclude_gmap_update(const coord_def p)
{
int px = p.x+x, py = p.y+y;
if (in_bounds(coord_def(px,py)))
- GmapUpdate(px, py, env.map[px][py].glyph(), true);
+ {
+ tiles.update_minimap(px, py, MF_EXCL);
+ }
}
-
- GmapDisplay(p.x,p.y);
}
#endif