diff options
author | Cameron Cawley | 2019-06-17 13:32:07 +0100 |
---|---|---|
committer | Filippos Karapetis | 2019-07-08 01:24:55 +0300 |
commit | 4cf9d1815c7980313e00ce1a0b71b19d9fa62327 (patch) | |
tree | a034d3abd58ea212f02c15c345ff99f16efd97c9 /engines/pegasus | |
parent | cf107e7f905c55d7c4b2383cd86eb23e2d8dcc88 (diff) | |
download | scummvm-rg350-4cf9d1815c7980313e00ce1a0b71b19d9fa62327.tar.gz scummvm-rg350-4cf9d1815c7980313e00ce1a0b71b19d9fa62327.tar.bz2 scummvm-rg350-4cf9d1815c7980313e00ce1a0b71b19d9fa62327.zip |
COMMON: Open the main menu when the joystick START button is pressed
Diffstat (limited to 'engines/pegasus')
-rw-r--r-- | engines/pegasus/input.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/pegasus/input.cpp b/engines/pegasus/input.cpp index 50267ae767..6738ad4251 100644 --- a/engines/pegasus/input.cpp +++ b/engines/pegasus/input.cpp @@ -190,7 +190,7 @@ uint InputDeviceManager::convertJoystickToKey(uint joybutton) { return Common::KEYCODE_TILDE; // Open Inventory Panel case Common::JOYSTICK_BUTTON_RIGHT_SHOULDER: return Common::KEYCODE_KP_MULTIPLY; // Open Biochip Panel - case Common::JOYSTICK_BUTTON_START: + case Common::JOYSTICK_BUTTON_BACK: return Common::KEYCODE_p; // Pause case Common::JOYSTICK_BUTTON_DPAD_UP: return Common::KEYCODE_UP; |