summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tutorial.cc
diff options
context:
space:
mode:
authorennewalker <ennewalker@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-14 15:18:04 +0000
committerennewalker <ennewalker@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-14 15:18:04 +0000
commit56ec9dd2047b94176d719cbb06bb8361f4f4d166 (patch)
tree45a4f562b2c38a6bd61761cf6b5ee2620e29019c /crawl-ref/source/tutorial.cc
parent61b8176337742ccaa81d0bd1f45e3dde3c44223b (diff)
downloadcrawl-ref-56ec9dd2047b94176d719cbb06bb8361f4f4d166.tar.gz
crawl-ref-56ec9dd2047b94176d719cbb06bb8361f4f4d166.zip
Making tutorial and named monster tags consistent. Also, making tooltips not disappear until the mouse moves to another square, to address [2564067].
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9062 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/tutorial.cc')
-rw-r--r--crawl-ref/source/tutorial.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/tutorial.cc b/crawl-ref/source/tutorial.cc
index 027635cae1..464327d37e 100644
--- a/crawl-ref/source/tutorial.cc
+++ b/crawl-ref/source/tutorial.cc
@@ -1220,7 +1220,7 @@ void tutorial_first_monster(const monsters &mon)
// need to highlight monster
const coord_def gc = mon.pos();
tiles.place_cursor(CURSOR_TUTORIAL, gc);
- tiles.add_text_tag(TAG_TUTORIAL, mon.name(DESC_CAP_A), gc);
+ tiles.add_text_tag(TAG_TUTORIAL, &mon);
text += "monster is a ";
text += mon.name(DESC_PLAIN).c_str();