diff options
| author | Matthew Hoops | 2011-09-23 14:07:18 -0400 | 
|---|---|---|
| committer | Matthew Hoops | 2011-09-23 14:07:18 -0400 | 
| commit | e5a2dec9c803f75f7aa0f695235e0c08a6d5e7eb (patch) | |
| tree | 9fe663f93207b035d1922e1d16602ec2a8d59241 | |
| parent | ddcdcb67b55a5813d375f70c50d2c7ff63bc4ba4 (diff) | |
| download | scummvm-rg350-e5a2dec9c803f75f7aa0f695235e0c08a6d5e7eb.tar.gz scummvm-rg350-e5a2dec9c803f75f7aa0f695235e0c08a6d5e7eb.tar.bz2 scummvm-rg350-e5a2dec9c803f75f7aa0f695235e0c08a6d5e7eb.zip | |
PEGASUS: Disable the alt key for now
| -rwxr-xr-x | engines/pegasus/input.cpp | 7 | 
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  		}  	} | 
