From dcb6ab5053495c776f54573d9f6e0a5f5443786d Mon Sep 17 00:00:00 2001 From: Chips Date: Sun, 3 Apr 2016 12:34:43 +0000 Subject: [PATCH] Use F11 instead of Left ALT for mouse/joystick switching --- src/od-pandora/pandora.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/od-pandora/pandora.cpp b/src/od-pandora/pandora.cpp index f4d7bf12..6d5a8433 100644 --- a/src/od-pandora/pandora.cpp +++ b/src/od-pandora/pandora.cpp @@ -738,7 +738,7 @@ void handle_events (void) } } - if (rEvent.key.keysym.sym==SDLK_LALT) + if (rEvent.key.keysym.sym==SDLK_F11) { // state moves thus: // joystick mode (with virt keyboard on L and R) @@ -838,7 +838,7 @@ void handle_events (void) buttonstate[2] = 0; } - if (rEvent.key.keysym.sym==SDLK_LALT) + if (rEvent.key.keysym.sym==SDLK_F11) { show_inputmode = 0; }