From c99b5e82839e221c568b3590524692205c6a4250 Mon Sep 17 00:00:00 2001 From: Jamie McCadden Date: Fri, 29 Mar 2024 16:14:00 +0000 Subject: [PATCH] atari/harddriv.cpp: Corrected brake pedal ADC channel for strtdriv. (#12192) --- src/mame/atari/harddriv.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mame/atari/harddriv.cpp b/src/mame/atari/harddriv.cpp index 73ad1832830..45a39824363 100644 --- a/src/mame/atari/harddriv.cpp +++ b/src/mame/atari/harddriv.cpp @@ -1312,8 +1312,8 @@ static INPUT_PORTS_START( strtdriv ) PORT_START("mainpcb:8BADC.1") /* b00000 - 8 bit ADC 1 */ PORT_BIT( 0xff, IP_ACTIVE_LOW, IPT_UNUSED ) - PORT_START("mainpcb:8BADC.2") /* b00000 - 8 bit ADC 2 - voice mic */ - PORT_BIT( 0xff, IP_ACTIVE_LOW, IPT_UNUSED ) + PORT_START("mainpcb:8BADC.2") /* b00000 - 8 bit ADC 2 - brake */ + PORT_BIT( 0xff, 0x00, IPT_PEDAL2 ) PORT_SENSITIVITY(25) PORT_KEYDELTA(40) PORT_NAME("Brake") PORT_START("mainpcb:8BADC.3") /* b00000 - 8 bit ADC 3 - volume */ PORT_BIT( 0xff, 0x80, IPT_UNUSED ) @@ -1324,8 +1324,8 @@ static INPUT_PORTS_START( strtdriv ) PORT_START("mainpcb:8BADC.5") /* b00000 - 8 bit ADC 5 - canopy */ PORT_BIT( 0xff, 0x80, IPT_UNUSED ) - PORT_START("mainpcb:8BADC.6") /* b00000 - 8 bit ADC 6 - brake */ - PORT_BIT( 0xff, 0x00, IPT_PEDAL2 ) PORT_SENSITIVITY(25) PORT_KEYDELTA(40) PORT_NAME("Brake") PORT_REVERSE + PORT_START("mainpcb:8BADC.6") /* b00000 - 8 bit ADC 6 - ADC input for voice mic? Not verified */ + PORT_BIT( 0xff, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_START("mainpcb:8BADC.7") /* b00000 - 8 bit ADC 7 - seat adjust */ PORT_BIT( 0xff, 0x80, IPT_UNUSED )