summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/format.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/format.cc')
-rw-r--r--crawl-ref/source/format.cc8
1 files changed, 3 insertions, 5 deletions
diff --git a/crawl-ref/source/format.cc b/crawl-ref/source/format.cc
index d4c8d16a6c..69e8b9be5a 100644
--- a/crawl-ref/source/format.cc
+++ b/crawl-ref/source/format.cc
@@ -503,11 +503,9 @@ void formatted_string::add_glyph(const item_def *item)
void formatted_string::add_glyph(const monsters *mons)
{
const int last_col = find_last_colour();
- unsigned ch;
- unsigned short col;
- get_mons_glyph(mons, &ch, &col);
- this->textcolor(col);
- this->cprintf("%s", stringize_glyph(ch).c_str());
+ glyph g = get_mons_glyph(mons);
+ this->textcolor(g.col);
+ this->cprintf("%s", stringize_glyph(g.ch).c_str());
this->textcolor(last_col);
}