diff options
author | Matthew Hoops | 2011-09-21 20:06:49 -0400 |
---|---|---|
committer | Matthew Hoops | 2011-09-21 20:06:49 -0400 |
commit | 02e7656b07061d0c8e5a7e79e731d5e01fc6210b (patch) | |
tree | 05528ba5e7f957fc1f68d29cab4db147bd60a3fd | |
parent | b4408d4527c05612aaabd86d52541d6def1485ab (diff) | |
download | scummvm-rg350-02e7656b07061d0c8e5a7e79e731d5e01fc6210b.tar.gz scummvm-rg350-02e7656b07061d0c8e5a7e79e731d5e01fc6210b.tar.bz2 scummvm-rg350-02e7656b07061d0c8e5a7e79e731d5e01fc6210b.zip |
PEGASUS: Allow for backquote to be used as a tilde too
-rwxr-xr-x | engines/pegasus/input.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/pegasus/input.cpp b/engines/pegasus/input.cpp index 4b1a8e4c50..76f5afae63 100755 --- a/engines/pegasus/input.cpp +++ b/engines/pegasus/input.cpp @@ -87,6 +87,7 @@ void InputDevice::getInput(Input &input, const tInputBits filter) { currentBits |= (kRawButtonDown << kMod3ButtonShift); break; case Common::KEYCODE_TILDE: + case Common::KEYCODE_BACKQUOTE: case Common::KEYCODE_NUMLOCK: // Yes, the original uses Num Lock/Clear on the Mac... currentBits |= (kRawButtonDown << kLeftFireButtonShift); break; |