summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/output.cc')
-rw-r--r--crawl-ref/source/output.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 5b295f3aef..3c4bae4073 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -2106,7 +2106,13 @@ char _get_overview_screen_results()
// Set flags, and don't use easy exit.
overview.set_flags(MF_SINGLESELECT | MF_ALWAYS_SHOW_MORE | MF_NOWRAP, false);
overview.set_more( formatted_string::parse_string(
- "<cyan>[ + : Page down. - : Page up. Esc exits.]"));
+#ifdef USE_TILE
+ "<cyan>[ +/L-click : Page down. - : Page up."
+ " Esc/R-click exits.]"));
+#else
+ "<cyan>[ + : Page down. - : Page up."
+ " Esc exits.]"));
+#endif
overview.set_tag("resists");
overview.add_text(_overview_screen_title());