summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-08 21:23:15 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-08 21:23:15 +0000
commit89cc8c5fc577431da1bf48c79be1726d3ec095ba (patch)
treed7f42f14bb9ae940045551484295f103afc1d60d /crawl-ref/source/output.cc
parent6760ab3170033b2ecceb6ced51e2de7a5d78d6fe (diff)
downloadcrawl-ref-89cc8c5fc577431da1bf48c79be1726d3ec095ba.tar.gz
crawl-ref-89cc8c5fc577431da1bf48c79be1726d3ec095ba.zip
Tiles:
* (Re?)allow mouseclicks in menus (Tiles, only): L-click = scroll down, R-click = Esc * Clear last_clicked_grid if you move your mouse. * When entering a new level, draw the map before handling monster shouts. Enne, please review the changes. Thanks! git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9386 c06c8d41-db1a-0410-9941-cceddc491573
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());