aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/input.cpp
diff options
context:
space:
mode:
authorGregory Montoir2007-01-07 23:18:18 +0000
committerGregory Montoir2007-01-07 23:18:18 +0000
commit216bcae2111156cd82791f2919d438b1f548cfe3 (patch)
tree571e5a5bde944ddd0e9be38ad69b034578b1f247 /engines/scumm/input.cpp
parentab180132c13e3e67a01ec02cce95e617cf7a6fc8 (diff)
downloadscummvm-rg350-216bcae2111156cd82791f2919d438b1f548cfe3.tar.gz
scummvm-rg350-216bcae2111156cd82791f2919d438b1f548cfe3.tar.bz2
scummvm-rg350-216bcae2111156cd82791f2919d438b1f548cfe3.zip
possible fix for bug #1193185
svn-id: r25051
Diffstat (limited to 'engines/scumm/input.cpp')
-rw-r--r--engines/scumm/input.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/scumm/input.cpp b/engines/scumm/input.cpp
index 52bff5bd01..ae7b5682df 100644
--- a/engines/scumm/input.cpp
+++ b/engines/scumm/input.cpp
@@ -172,14 +172,14 @@ void ScummEngine::parseEvents() {
// The following two cases enable dialog choices to be
// scrolled through in the SegaCD version of MI
// as nothing else uses the wheel don't bother
- // checking the gameid
+ // checking the gameid. Values are taken from script-14.
case OSystem::EVENT_WHEELDOWN:
- _keyPressed = 'a';
+ _keyPressed = 55;
break;
case OSystem::EVENT_WHEELUP:
- _keyPressed = 'q';
+ _keyPressed = 54;
break;
case OSystem::EVENT_QUIT: