aboutsummaryrefslogtreecommitdiff
path: root/engines/pegasus
diff options
context:
space:
mode:
authorMatthew Hoops2011-09-23 14:07:18 -0400
committerMatthew Hoops2011-09-23 14:07:18 -0400
commite5a2dec9c803f75f7aa0f695235e0c08a6d5e7eb (patch)
tree9fe663f93207b035d1922e1d16602ec2a8d59241 /engines/pegasus
parentddcdcb67b55a5813d375f70c50d2c7ff63bc4ba4 (diff)
downloadscummvm-rg350-e5a2dec9c803f75f7aa0f695235e0c08a6d5e7eb.tar.gz
scummvm-rg350-e5a2dec9c803f75f7aa0f695235e0c08a6d5e7eb.tar.bz2
scummvm-rg350-e5a2dec9c803f75f7aa0f695235e0c08a6d5e7eb.zip
PEGASUS: Disable the alt key for now
Diffstat (limited to 'engines/pegasus')
-rwxr-xr-xengines/pegasus/input.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/engines/pegasus/input.cpp b/engines/pegasus/input.cpp
index 08bc22bafd..993af63158 100755
--- a/engines/pegasus/input.cpp
+++ b/engines/pegasus/input.cpp
@@ -103,8 +103,13 @@ void InputDevice::getInput(Input &input, const tInputBits filter) {
break;
}
- if (event.kbd.flags & Common::KBD_ALT) // Alt, option, same thing!
+#if 0
+ // FIXME: This is disabled for now because it interferes with
+ // the ScummVM alt combinations. It's only used for one easter egg
+ // anyway, so I'll come up with something when I get around to that.
+ if (event.kbd.flags & Common::KBD_ALT)
currentBits |= (kRawButtonDown << kMod2ButtonShift);
+#endif
}
}