From 9985871cc1e050d54a073f8322247855cb25d070 Mon Sep 17 00:00:00 2001 From: cracyc Date: Thu, 17 Jan 2013 19:50:05 +0000 Subject: [PATCH] [mess] make the analog button a toggle (nw) --- src/mess/machine/psxanalog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mess/machine/psxanalog.c b/src/mess/machine/psxanalog.c index b90338b649d..cd53e8e9984 100644 --- a/src/mess/machine/psxanalog.c +++ b/src/mess/machine/psxanalog.c @@ -225,7 +225,7 @@ static INPUT_PORTS_START( psx_analog_controller ) PORT_BIT( 0xff, 0x80, IPT_PADDLE ) PORT_NAME("Left Analog Y") PORT_SENSITIVITY(100) PORT_START("PSXMISC") - PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON11 ) PORT_NAME("Analog") PORT_CHANGED_MEMBER(DEVICE_SELF, psx_analog_controller_device, change_mode, 0) + PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON11 ) PORT_NAME("Analog") PORT_TOGGLE PORT_CHANGED_MEMBER(DEVICE_SELF, psx_analog_controller_device, change_mode, 0) INPUT_PORTS_END ioport_constructor psx_analog_controller_device::device_input_ports() const