From 2b18382c8daaeb5805238d6e5aae11cf194d189b Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Tue, 20 Dec 2022 11:57:51 +1100 Subject: [PATCH] bus/msx/ctrl, bus/sms_ctrl: Use AD Stick Z type for XE-1AP throttle. --- src/devices/bus/msx/ctrl/xe1ap.cpp | 2 +- src/devices/bus/sms_ctrl/xe1ap.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/bus/msx/ctrl/xe1ap.cpp b/src/devices/bus/msx/ctrl/xe1ap.cpp index a78477c12c7..4d38d378666 100644 --- a/src/devices/bus/msx/ctrl/xe1ap.cpp +++ b/src/devices/bus/msx/ctrl/xe1ap.cpp @@ -35,7 +35,7 @@ INPUT_PORTS_START(xe1ap) PORT_BIT(0xff, 0x80, IPT_AD_STICK_X) PORT_SENSITIVITY(50) PORT_KEYDELTA(50) PORT_START("CH2") - PORT_BIT(0xff, 0x80, IPT_PADDLE_V) PORT_SENSITIVITY(50) PORT_KEYDELTA(50) + PORT_BIT(0xff, 0x80, IPT_AD_STICK_Z) PORT_SENSITIVITY(50) PORT_KEYDELTA(50) PORT_NAME("%p Throttle") PORT_START("CH3") PORT_BIT(0xff, 0x00, IPT_UNUSED) diff --git a/src/devices/bus/sms_ctrl/xe1ap.cpp b/src/devices/bus/sms_ctrl/xe1ap.cpp index e14c093490e..74ee2e9d13a 100644 --- a/src/devices/bus/sms_ctrl/xe1ap.cpp +++ b/src/devices/bus/sms_ctrl/xe1ap.cpp @@ -35,7 +35,7 @@ INPUT_PORTS_START( sms_xe1ap ) PORT_BIT(0xff, 0x80, IPT_AD_STICK_X) PORT_SENSITIVITY(50) PORT_KEYDELTA(50) PORT_START("CH2") - PORT_BIT(0xff, 0x80, IPT_PADDLE_V) PORT_SENSITIVITY(50) PORT_KEYDELTA(50) + PORT_BIT(0xff, 0x80, IPT_AD_STICK_Z) PORT_SENSITIVITY(50) PORT_KEYDELTA(50) PORT_NAME("%p Throttle") PORT_START("CH3") PORT_BIT(0xff, 0x00, IPT_UNUSED)