summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/items.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/items.cc')
-rw-r--r--crawl-ref/source/items.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/crawl-ref/source/items.cc b/crawl-ref/source/items.cc
index 50fca9f162..566fb08874 100644
--- a/crawl-ref/source/items.cc
+++ b/crawl-ref/source/items.cc
@@ -1252,7 +1252,13 @@ void pickup()
if (keyin != 'a')
{
- mprf(MSGCH_PROMPT, "Pick up %s? (y/n/a/*?g,/q)",
+ std::string prompt = "Pick up %s? ("
+#ifdef USE_TILE
+ "Left-click to enter menu, or press "
+#endif
+ "y/n/a/*?g,/q)";
+
+ mprf(MSGCH_PROMPT, prompt.c_str(),
get_message_colour_tags(mitm[o], DESC_NOCAP_A,
MSGCH_PROMPT).c_str());