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.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/format.cc b/crawl-ref/source/format.cc
index 2b77fc0bab..595d2a3f85 100644
--- a/crawl-ref/source/format.cc
+++ b/crawl-ref/source/format.cc
@@ -240,7 +240,7 @@ void formatted_string::add_glyph(const item_def *item)
unsigned short col;
get_item_glyph(item, &ch, &col);
this->textcolor(col);
- this->cprintf("%c", ch);
+ this->cprintf("%s", stringize_glyph(ch).c_str());
this->textcolor(last_col);
}
@@ -251,7 +251,7 @@ void formatted_string::add_glyph(const monsters *mons)
unsigned short col;
get_mons_glyph(mons, &ch, &col);
this->textcolor(col);
- this->cprintf("%c", ch);
+ this->cprintf("%s", stringize_glyph(ch).c_str());
this->textcolor(last_col);
}