summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acr.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-11 16:22:53 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-11 16:22:53 +0000
commit20040af1f5ef00eb9eb2d61df3d5b31cdab804d9 (patch)
tree2928f089964b27ec56d2005cf1e8c96d09e97a67 /crawl-ref/source/acr.cc
parent86a4b3a425d3afef3a2bd2304d08e87b6b49ff01 (diff)
downloadcrawl-ref-20040af1f5ef00eb9eb2d61df3d5b31cdab804d9.tar.gz
crawl-ref-20040af1f5ef00eb9eb2d61df3d5b31cdab804d9.zip
Apply my previous commit to 0.4.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup-0.4@6503 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/acr.cc')
-rw-r--r--crawl-ref/source/acr.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index 225681b04b..6e270d640a 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -3476,7 +3476,7 @@ static command_type _keycode_to_command( keycode_type key )
case 'D': return CMD_NO_CMD;
case 'E': return CMD_EXPERIENCE_CHECK;
case 'F': return CMD_THROW_ITEM_NO_QUIVER;
- case 'G': return CMD_INTERLEVEL_TRAVEL;
+ case 'G': return CMD_FULL_VIEW;
case 'I': return CMD_DISPLAY_SPELLS;
case 'M': return CMD_MEMORISE_SPELL;
case 'O': return CMD_OPEN_DOOR;
@@ -3533,7 +3533,7 @@ static command_type _keycode_to_command( keycode_type key )
case CONTROL('C'): return CMD_CLEAR_MAP;
case CONTROL('E'): return CMD_FORGET_STASH;
case CONTROL('F'): return CMD_SEARCH_STASHES;
- case CONTROL('G'): return CMD_FULL_VIEW;
+ case CONTROL('G'): return CMD_INTERLEVEL_TRAVEL;
case CONTROL('I'): return CMD_NO_CMD; // Tab on most systems
case CONTROL('M'): return CMD_NO_CMD; // Enter on most systems
case CONTROL('O'): return CMD_DISPLAY_OVERMAP;