summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/show.cc
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2009-11-15 21:32:30 +0100
committerRobert Vollmert <rvollmert@gmx.net>2009-11-15 23:11:41 +0100
commitd13f2354db0c50108beccd90aea26ec416e20d07 (patch)
tree7fea3408b5b3006419feff73035198bf8cc1e560 /crawl-ref/source/show.cc
parentddf80f7077a00bd04168c904b153fb1e657b9d38 (diff)
downloadcrawl-ref-d13f2354db0c50108beccd90aea26ec416e20d07.tar.gz
crawl-ref-d13f2354db0c50108beccd90aea26ec416e20d07.zip
Convert get_mons_glyph to return a glyph struct.
Diffstat (limited to 'crawl-ref/source/show.cc')
-rw-r--r--crawl-ref/source/show.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/show.cc b/crawl-ref/source/show.cc
index cc040dd408..2e25971d37 100644
--- a/crawl-ref/source/show.cc
+++ b/crawl-ref/source/show.cc
@@ -302,7 +302,7 @@ void show_def::_update_monster(const monsters* mons)
grid(e).cls = SH_MONSTER;
grid(e).mons = mons->type;
- grid(e).colour = get_mons_colour(mons);
+ grid(e).colour = get_mons_glyph(mons).col;
#ifdef USE_TILE
tile_place_monster(mons->pos().x, mons->pos().y, mons->mindex(), true);