diff options
author | Travis Howell | 2007-07-23 12:32:08 +0000 |
---|---|---|
committer | Travis Howell | 2007-07-23 12:32:08 +0000 |
commit | f4fb06845c01c4ad88af4b9293422560fbcbd929 (patch) | |
tree | f866b8425056f3530070b8c7a6020bc439a5f9d1 /engines | |
parent | bb44161189101838e8d22a87fb82d955b1c5fb31 (diff) | |
download | scummvm-rg350-f4fb06845c01c4ad88af4b9293422560fbcbd929.tar.gz scummvm-rg350-f4fb06845c01c4ad88af4b9293422560fbcbd929.tar.bz2 scummvm-rg350-f4fb06845c01c4ad88af4b9293422560fbcbd929.zip |
Fix regression, the incorrect key was been used for highlighting items in Simon the Sorcerer 1/2.
svn-id: r28179
Diffstat (limited to 'engines')
-rw-r--r-- | engines/agos/input.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/agos/input.cpp b/engines/agos/input.cpp index 0f1c234b79..a86cad9b94 100644 --- a/engines/agos/input.cpp +++ b/engines/agos/input.cpp @@ -196,7 +196,7 @@ void AGOSEngine::waitForInput() { for (;;) { if ((getGameType() == GType_SIMON1 || getGameType() == GType_SIMON2) && - _keyPressed.keycode == Common::KEYCODE_HASH) + _keyPressed.keycode == Common::KEYCODE_F10) displayBoxStars(); if (processSpecialKeys()) { if ((getGameType() == GType_PP && getGameId() != GID_DIMP) || |