summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/cmd-keys.h
diff options
context:
space:
mode:
authorDavid Ploog <dploog@users.sourceforge.net>2010-09-09 17:51:24 +0200
committerDavid Ploog <dploog@users.sourceforge.net>2010-09-09 17:53:37 +0200
commitd93280b447a516d6e366a7b5d4aadec01b924d1f (patch)
tree92a06827af5b568cd2e51c53dc54dafcfbb43f81 /crawl-ref/source/cmd-keys.h
parent9159321b49fc93906497b6c2de2c1e8130a8ef84 (diff)
downloadcrawl-ref-d93280b447a516d6e366a7b5d4aadec01b924d1f.tar.gz
crawl-ref-d93280b447a516d6e366a7b5d4aadec01b924d1f.zip
Switch G and Ctrl-G in cmd-keys.h.
This prints the interlevel travel command in the ?? help again and fixes #2091. It showed Esc as interlevel travel key before, despite a comment in cmd-keys.h claiming that ?? would always show the key assigned last. Why exchanging the two keys made it work I won't know.
Diffstat (limited to 'crawl-ref/source/cmd-keys.h')
-rw-r--r--crawl-ref/source/cmd-keys.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/cmd-keys.h b/crawl-ref/source/cmd-keys.h
index cef888e9f0..0e7138aef8 100644
--- a/crawl-ref/source/cmd-keys.h
+++ b/crawl-ref/source/cmd-keys.h
@@ -76,8 +76,8 @@
{'C', CMD_CLOSE_DOOR},
{'E', CMD_EXPERIENCE_CHECK},
{'F', CMD_THROW_ITEM_NO_QUIVER},
-{'G', CMD_INTERLEVEL_TRAVEL},
{CONTROL('G'), CMD_INTERLEVEL_TRAVEL},
+{'G', CMD_INTERLEVEL_TRAVEL},
{'I', CMD_DISPLAY_SPELLS},
{'M', CMD_MEMORISE_SPELL},
{'O', CMD_OPEN_DOOR},