summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tutorial.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/tutorial.cc')
-rw-r--r--crawl-ref/source/tutorial.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/tutorial.cc b/crawl-ref/source/tutorial.cc
index 798c3c10c1..eba41f060b 100644
--- a/crawl-ref/source/tutorial.cc
+++ b/crawl-ref/source/tutorial.cc
@@ -1051,7 +1051,7 @@ void learned_something_new(tutorial_event_type seen_what, int x, int y)
"the responding faith you'll be asked for confirmation.";
break;
case TUT_SEEN_SHOP:
- text << "The <yellow>" << static_cast<char>(get_screen_glyph(x,y))
+ text << "The <yellow>" << stringize_glyph(get_screen_glyph(x,y))
<< "<magenta> is a shop. You can enter it by typing "
"<w><<<magenta>.";
break;
@@ -1059,7 +1059,7 @@ void learned_something_new(tutorial_event_type seen_what, int x, int y)
if (you.num_turns < 1)
return;
- text << "The <w>" << static_cast<char>(get_screen_glyph(x,y))
+ text << "The <w>" << stringize_glyph(get_screen_glyph(x,y))
<< "<magenta> is a closed door. You can open it by walking into it. "
"Sometimes it is useful to close a door. Do so by pressing "
"<w>c<magenta>, followed by the direction.";