From 90f60a95b209a45186858d78d68f9dc1b65ed0a6 Mon Sep 17 00:00:00 2001 From: Ivan Vangelista Date: Sat, 22 Oct 2022 17:44:50 +0200 Subject: [PATCH] konami/wecleman.cpp: fixed typo in dip definition, specified defaults were taken from a US manual --- src/mame/konami/wecleman.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/konami/wecleman.cpp b/src/mame/konami/wecleman.cpp index 3ff7b3abe1c..1d0b53baafc 100644 --- a/src/mame/konami/wecleman.cpp +++ b/src/mame/konami/wecleman.cpp @@ -853,7 +853,7 @@ static INPUT_PORTS_START( hotchase ) PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_CUSTOM ) PORT_READ_LINE_MEMBER(wecleman_state, hotchase_sound_status_r) PORT_BIT( 0xe0, IP_ACTIVE_LOW, IPT_UNKNOWN ) - // dips and defaults verified with manual + // dips and defaults verified with US manual PORT_START("DSW2") /* $140015.b */ PORT_DIPNAME( 0x01, 0x00, "Speed Unit" ) PORT_DIPSETTING( 0x01, "KM" ) @@ -874,7 +874,7 @@ static INPUT_PORTS_START( hotchase ) PORT_DIPSETTING( 0x00, DEF_STR( On ) ) /* wheel <-> brake ; accel -> start */ PORT_DIPNAME( 0x40, 0x40, "Steering Wheel Specifications" ) - PORT_DIPSETTING( 0x40, "Potentionmeter" ) // Wec Chequered Flag Type + PORT_DIPSETTING( 0x40, "Potentiometer" ) // Wec Chequered Flag Type PORT_DIPSETTING( 0x00, "Optical Sensor" ) // Konami GT Type PORT_DIPNAME( 0x80, 0x00, DEF_STR( Demo_Sounds ) ) PORT_DIPSETTING( 0x80, DEF_STR( Off ) )