From 58ed6c4831ac0c5447cb423622da78fb05052f37 Mon Sep 17 00:00:00 2001 From: AJR Date: Fri, 14 Jun 2019 08:38:14 -0400 Subject: [PATCH] apple2e.cpp, apple2gs.cpp: Remove leftover joystick macros (nw) --- src/mame/drivers/apple2e.cpp | 7 ------- src/mame/drivers/apple2gs.cpp | 8 -------- 2 files changed, 15 deletions(-) diff --git a/src/mame/drivers/apple2e.cpp b/src/mame/drivers/apple2e.cpp index 94b03ee875c..d38869d8c4e 100644 --- a/src/mame/drivers/apple2e.cpp +++ b/src/mame/drivers/apple2e.cpp @@ -493,13 +493,6 @@ private: offs_t dasm_trampoline(std::ostream &stream, offs_t pc, const util::disasm_interface::data_buffer &opcodes, const util::disasm_interface::data_buffer ¶ms); }; -/*************************************************************************** - PARAMETERS -***************************************************************************/ - -#define JOYSTICK_DELTA 80 -#define JOYSTICK_SENSITIVITY 50 -#define JOYSTICK_AUTOCENTER 80 offs_t apple2e_state::dasm_trampoline(std::ostream &stream, offs_t pc, const util::disasm_interface::data_buffer &opcodes, const util::disasm_interface::data_buffer ¶ms) { diff --git a/src/mame/drivers/apple2gs.cpp b/src/mame/drivers/apple2gs.cpp index c58acfc8983..6ee95ca0d64 100644 --- a/src/mame/drivers/apple2gs.cpp +++ b/src/mame/drivers/apple2gs.cpp @@ -630,14 +630,6 @@ private: } -/*************************************************************************** - PARAMETERS -***************************************************************************/ - -#define JOYSTICK_DELTA 80 -#define JOYSTICK_SENSITIVITY 50 -#define JOYSTICK_AUTOCENTER 80 - offs_t apple2gs_state::dasm_trampoline(std::ostream &stream, offs_t pc, const util::disasm_interface::data_buffer &opcodes, const util::disasm_interface::data_buffer ¶ms) { return m_a2common->dasm_override_GS(stream, pc, opcodes, params);