diff options
author | Tarek Soliman | 2011-12-30 13:20:39 -0600 |
---|---|---|
committer | Tarek Soliman | 2011-12-30 13:23:31 -0600 |
commit | 7d00a997cd064469e975b3453974d811abb4127e (patch) | |
tree | dc207cf6cc14f4e4c8dd6abdf58ef3a53cffd2c0 /engines | |
parent | 0e0eddbab333589759480941b5e01bbe77413ac8 (diff) | |
download | scummvm-rg350-7d00a997cd064469e975b3453974d811abb4127e.tar.gz scummvm-rg350-7d00a997cd064469e975b3453974d811abb4127e.tar.bz2 scummvm-rg350-7d00a997cd064469e975b3453974d811abb4127e.zip |
KYRA: Fix typo bug and code cleanup in the keymapper game keymap
Diffstat (limited to 'engines')
-rw-r--r-- | engines/kyra/lol.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/kyra/lol.cpp b/engines/kyra/lol.cpp index b36f598649..290c3bad26 100644 --- a/engines/kyra/lol.cpp +++ b/engines/kyra/lol.cpp @@ -477,9 +477,9 @@ void LoLEngine::initKeymap() { Common::Keymap *engineKeyMap = new Common::Keymap(kKeymapName); const Common::KeyActionEntry keyActionEntries[] = { - {Common::KeyState(Common::KEYCODE_F1, Common::ASCII_F1, 0), "AT1", _("Attack 1")}, - {Common::KeyState(Common::KEYCODE_F2, Common::ASCII_F2, 0), "AT2", _("Attack 2")}, - {Common::KeyState(Common::KEYCODE_F3, Common::ASCII_F2, 0), "AT3", _("Attack 3")}, + {Common::KeyState(Common::KEYCODE_F1, Common::ASCII_F1), "AT1", _("Attack 1")}, + {Common::KeyState(Common::KEYCODE_F2, Common::ASCII_F2), "AT2", _("Attack 2")}, + {Common::KeyState(Common::KEYCODE_F3, Common::ASCII_F3), "AT3", _("Attack 3")}, {Common::KeyState(Common::KEYCODE_UP), "MVF", _("Move Forward")}, {Common::KeyState(Common::KEYCODE_DOWN), "MVB", _("Move Back")}, {Common::KeyState(Common::KEYCODE_LEFT), "SLL", _("Slide Left")}, |