From 4398c6bbfdd084968093e75a9b64abdc9a0c1e30 Mon Sep 17 00:00:00 2001 From: AJR Date: Sat, 19 Dec 2020 11:42:06 -0500 Subject: [PATCH] dphh8213: Fix Up+Left test mode --- src/mame/drivers/st22xx_bbl338.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mame/drivers/st22xx_bbl338.cpp b/src/mame/drivers/st22xx_bbl338.cpp index 9c6c1bb5fad..faaf9ea2ab1 100644 --- a/src/mame/drivers/st22xx_bbl338.cpp +++ b/src/mame/drivers/st22xx_bbl338.cpp @@ -83,8 +83,8 @@ static INPUT_PORTS_START(st22xx_bbl338) PORT_START("IN1") PORT_BIT(0x01, IP_ACTIVE_LOW, IPT_START1) PORT_BIT(0x02, IP_ACTIVE_LOW, IPT_UNKNOWN) - PORT_BIT(0x04, IP_ACTIVE_LOW, IPT_UNKNOWN) - PORT_BIT(0x08, IP_ACTIVE_LOW, IPT_UNKNOWN) + PORT_BIT(0x04, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT) + PORT_BIT(0x08, IP_ACTIVE_LOW, IPT_JOYSTICK_UP) PORT_BIT(0x30, IP_ACTIVE_LOW, IPT_UNUSED) PORT_START("IN2") @@ -99,8 +99,8 @@ static INPUT_PORTS_START(st22xx_bbl338) PORT_BIT(0x02, IP_ACTIVE_LOW, IPT_BUTTON1) PORT_NAME("A") PORT_BIT(0x04, IP_ACTIVE_LOW, IPT_UNUSED) PORT_BIT(0x08, IP_ACTIVE_LOW, IPT_BUTTON2) PORT_NAME("B") - PORT_BIT(0x10, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT) - PORT_BIT(0x20, IP_ACTIVE_LOW, IPT_JOYSTICK_UP) + PORT_BIT(0x10, IP_ACTIVE_LOW, IPT_UNKNOWN) // left? + PORT_BIT(0x20, IP_ACTIVE_LOW, IPT_UNKNOWN) // up? PORT_START("IN4") PORT_BIT(0x01, IP_ACTIVE_LOW, IPT_UNKNOWN)