summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tutorial.cc
diff options
context:
space:
mode:
authorMatthew Cline <zelgadis@sourceforge.net>2009-11-19 00:12:21 -0800
committerMatthew Cline <zelgadis@sourceforge.net>2009-11-19 00:12:21 -0800
commit7334982fb7de15bdf0ebf0673bc91f7fb121e73c (patch)
treef827ca92c82f4999101b764df3f430c1e6289ab5 /crawl-ref/source/tutorial.cc
parent552dc77be4d12c063bf314b5699fc2abfdadb198 (diff)
downloadcrawl-ref-7334982fb7de15bdf0ebf0673bc91f7fb121e73c.tar.gz
crawl-ref-7334982fb7de15bdf0ebf0673bc91f7fb121e73c.zip
Tiles tutorial note on items pane.
Diffstat (limited to 'crawl-ref/source/tutorial.cc')
-rw-r--r--crawl-ref/source/tutorial.cc14
1 files changed, 13 insertions, 1 deletions
diff --git a/crawl-ref/source/tutorial.cc b/crawl-ref/source/tutorial.cc
index d1ba32f723..fc18dad09e 100644
--- a/crawl-ref/source/tutorial.cc
+++ b/crawl-ref/source/tutorial.cc
@@ -633,7 +633,11 @@ static void _tutorial_message_intro()
{
std::string result;
- result = "This lower part of the screen is reserved for messages. "
+ result = "This lower "
+#ifdef USE_TILE
+ "left "
+#endif
+ "part of the screen is reserved for messages. "
"Everything related to the tutorial is shown in this colour. If "
"you missed something, previous messages can be read again with "
"<w>Ctrl-P</w>"
@@ -641,6 +645,14 @@ static void _tutorial_message_intro()
" or by <w>clicking into the message area</w>"
#endif
"." EOL;
+
+#ifdef USE_TILE
+ result += EOL;
+ result += "To the bottom right of the screen is a set of items. "
+ "The top four lines are the items in your inventory, and "
+ "the bottom two are items underneath you on the floor." EOL;
+#endif
+
result += "<lightgrey> --more-- "
"Press <white>Escape</white> to skip the basics.</lightgrey>";