mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-07 03:18:17 +00:00
PEGASUS: Disable the alt key for now
This commit is contained in:
parent
ddcdcb67b5
commit
e5a2dec9c8
@ -103,8 +103,13 @@ void InputDevice::getInput(Input &input, const tInputBits filter) {
|
|||||||
break;
|
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);
|
currentBits |= (kRawButtonDown << kMod2ButtonShift);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user