PEGASUS: Disable the alt key for now

This commit is contained in:
Matthew Hoops 2011-09-23 14:07:18 -04:00
parent ddcdcb67b5
commit e5a2dec9c8

View File

@ -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
}
}