From 55fedcb38df10a6c6baaab1b5a854fe81fcade8e Mon Sep 17 00:00:00 2001 From: Steven Coomber <81829553+scoomby@users.noreply.github.com> Date: Tue, 5 Apr 2022 18:30:46 +0100 Subject: thepit.cpp: Corrected coinage DIP switch settings for thepit (MT08280). (#9518) --- src/mame/drivers/thepit.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mame/drivers/thepit.cpp b/src/mame/drivers/thepit.cpp index baf6c1b32a1..098697d2fd5 100644 --- a/src/mame/drivers/thepit.cpp +++ b/src/mame/drivers/thepit.cpp @@ -328,9 +328,9 @@ static INPUT_PORTS_START( thepit ) PORT_START("DSW") PORT_DIPNAME( 0x03, 0x00, DEF_STR( Coinage ) ) PORT_DIPLOCATION("SW1:!1,!2") - PORT_DIPSETTING( 0x01, DEF_STR( 2C_3C ) ) - PORT_DIPSETTING( 0x02, DEF_STR( 2C_4C ) ) - PORT_DIPSETTING( 0x00, DEF_STR( 1C_2C ) ) + PORT_DIPSETTING( 0x00, DEF_STR( 1C_1C ) ) + PORT_DIPSETTING( 0x01, DEF_STR( 3C_2C ) ) + PORT_DIPSETTING( 0x02, DEF_STR( 2C_1C ) ) PORT_DIPSETTING( 0x03, DEF_STR( Free_Play ) ) PORT_DIPNAME( 0x04, 0x00, "Game Speed" ) PORT_DIPLOCATION("SW1:!3") PORT_DIPSETTING( 0x04, "Slow" ) -- cgit v1.2.3