(darkcyan, and overridden by any feature, monster or item)
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3302 c06c8d41-db1a-0410-9941-cceddc491573
GWGKGHFGBLVPDSSDWYFORHZHMWOR3SFC5PJNF732V7FEKWWJKPOAC
#ifdef USE_TILE
// update Gmap for squares surrounding exclude centre
static void tile_exclude_gmap_update(const coord_def p)
{
for (int x = -8; x < 8; x++)
for (int y = -8; y < 8; y++)
{
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);
}
GmapDisplay(p.x,p.y);
}
#endif