libretro: Fix compile errors (PlusROM and some minor joystick stuff).

This commit is contained in:
Stephen Anthony 2020-12-17 23:58:35 -03:30
parent 1a79ea09c5
commit 14bd210005
2 changed files with 1 additions and 4 deletions

View File

@ -471,19 +471,15 @@ class EventHandler
SCANLINES, SCANLINES,
INTERPOLATION, INTERPOLATION,
// *** Input group *** // *** Input group ***
#ifdef JOYSTICK_SUPPORT
DEADZONE, DEADZONE,
ANALOG_SENSITIVITY, ANALOG_SENSITIVITY,
DEJITTER_AVERAGING, DEJITTER_AVERAGING,
DEJITTER_REACTION, DEJITTER_REACTION,
#endif
DIGITAL_SENSITIVITY, DIGITAL_SENSITIVITY,
AUTO_FIRE, AUTO_FIRE,
FOUR_DIRECTIONS, FOUR_DIRECTIONS,
MOD_KEY_COMBOS, MOD_KEY_COMBOS,
#ifdef JOYSTICK_SUPPORT
SA_PORT_ORDER, SA_PORT_ORDER,
#endif
USE_MOUSE, USE_MOUSE,
PADDLE_SENSITIVITY, PADDLE_SENSITIVITY,
TRACKBALL_SENSITIVITY, TRACKBALL_SENSITIVITY,

View File

@ -111,6 +111,7 @@ SOURCES_CXX := \
$(CORE_DIR)/emucore/MT24LC256.cxx \ $(CORE_DIR)/emucore/MT24LC256.cxx \
$(CORE_DIR)/emucore/OSystem.cxx \ $(CORE_DIR)/emucore/OSystem.cxx \
$(CORE_DIR)/emucore/Paddles.cxx \ $(CORE_DIR)/emucore/Paddles.cxx \
$(CORE_DIR)/emucore/PlusROM.cxx \
$(CORE_DIR)/emucore/PointingDevice.cxx \ $(CORE_DIR)/emucore/PointingDevice.cxx \
$(CORE_DIR)/emucore/Props.cxx \ $(CORE_DIR)/emucore/Props.cxx \
$(CORE_DIR)/emucore/PropsSet.cxx \ $(CORE_DIR)/emucore/PropsSet.cxx \