summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/viewmap.cc
diff options
context:
space:
mode:
authorChris Oelmueller <chris.oelmueller@gmail.com>2013-01-11 03:27:42 +0100
committerNeil Moore <neil@s-z.org>2013-02-10 19:21:43 -0500
commita07b571a732688a788e9a26987aeaf7730ccac7f (patch)
tree2555375fdf890829fd1b8d5fdf0aa60019f74e8b /crawl-ref/source/viewmap.cc
parent0cd1f8c9d9f613d8d575a6f5809feda6a0f79d9f (diff)
downloadcrawl-ref-a07b571a732688a788e9a26987aeaf7730ccac7f.tar.gz
crawl-ref-a07b571a732688a788e9a26987aeaf7730ccac7f.zip
Retire * and / keys for cycling stashes on level map
Functionality of * continues to be provided by I, backwards cycling now happens through O. This change in particular enables fake Ctrl and Shift keypresses which is especially useful when trying to forget the level map on webtiles (browsers usually intercept Ctrl-F).
Diffstat (limited to 'crawl-ref/source/viewmap.cc')
-rw-r--r--crawl-ref/source/viewmap.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/crawl-ref/source/viewmap.cc b/crawl-ref/source/viewmap.cc
index 3a872624ae..e5c07db1d0 100644
--- a/crawl-ref/source/viewmap.cc
+++ b/crawl-ref/source/viewmap.cc
@@ -897,8 +897,7 @@ bool show_map(level_pos &lpos,
command_type cmd = key_to_command(key, KMC_LEVELMAP);
#else
const int key = unmangle_direction_keys(getchm(KMC_LEVELMAP),
- KMC_LEVELMAP,
- false, false);
+ KMC_LEVELMAP);
command_type cmd = key_to_command(key, KMC_LEVELMAP);
#endif
if (cmd < CMD_MIN_OVERMAP || cmd > CMD_MAX_OVERMAP)