[Scummvm-cvs-logs] scummvm master -> 7d00a997cd064469e975b3453974d811abb4127e
tsoliman
tarek at bashasoliman.com
Fri Dec 30 20:26:03 CET 2011
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
7d00a997cd KYRA: Fix typo bug and code cleanup in the keymapper game keymap
Commit: 7d00a997cd064469e975b3453974d811abb4127e
https://github.com/scummvm/scummvm/commit/7d00a997cd064469e975b3453974d811abb4127e
Author: Tarek Soliman (tsoliman at scummvm.org)
Date: 2011-12-30T11:23:31-08:00
Commit Message:
KYRA: Fix typo bug and code cleanup in the keymapper game keymap
Changed paths:
engines/kyra/lol.cpp
diff --git a/engines/kyra/lol.cpp b/engines/kyra/lol.cpp
index b36f598..290c3ba 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")},
More information about the Scummvm-git-logs
mailing list