From b8117caefda940a3dd2da26ff04ccd03d669b89d Mon Sep 17 00:00:00 2001 From: thrust26 Date: Fri, 18 Dec 2020 08:13:55 +0100 Subject: [PATCH] removed JOYSTICK_SUPPORT checks to align with header file --- src/emucore/EventHandler.cxx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/emucore/EventHandler.cxx b/src/emucore/EventHandler.cxx index 8bc0c0489..0d8be1a63 100644 --- a/src/emucore/EventHandler.cxx +++ b/src/emucore/EventHandler.cxx @@ -574,19 +574,15 @@ AdjustFunction EventHandler::getAdjustSetting(AdjustSetting setting) std::bind(&Console::toggleInter, &myOSystem.console(), _1), // *** Input settings *** - #ifdef JOYSTICK_SUPPORT std::bind(&PhysicalJoystickHandler::changeDeadzone, &joyHandler(), _1), std::bind(&PhysicalJoystickHandler::changeAnalogPaddleSensitivity, &joyHandler(), _1), std::bind(&PhysicalJoystickHandler::changePaddleDejitterAveraging, &joyHandler(), _1), std::bind(&PhysicalJoystickHandler::changePaddleDejitterReaction, &joyHandler(), _1), - #endif std::bind(&PhysicalJoystickHandler::changeDigitalPaddleSensitivity, &joyHandler(), _1), std::bind(&Console::changeAutoFireRate, &myOSystem.console(), _1), std::bind(&EventHandler::toggleAllow4JoyDirections, this, _1), std::bind(&PhysicalKeyboardHandler::toggleModKeys, &keyHandler(), _1), - #ifdef JOYSTICK_SUPPORT std::bind(&EventHandler::toggleSAPortOrder, this, _1), - #endif std::bind(&EventHandler::changeMouseControllerMode, this, _1), std::bind(&PhysicalJoystickHandler::changeMousePaddleSensitivity, &joyHandler(), _1), std::bind(&PhysicalJoystickHandler::changeMouseTrackballSensitivity, &joyHandler(), _1),