From 70e6d31c73155e8de54e10d2ee3f281920e465f3 Mon Sep 17 00:00:00 2001 From: Aaron Giles Date: Thu, 11 Sep 2008 15:58:37 +0000 Subject: [PATCH] correct dip settings, verified in game and tested with -valid http://mametesters.org/mantis/view.php?id=2198 Best regards Mike --- src/mame/drivers/balsente.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/mame/drivers/balsente.c b/src/mame/drivers/balsente.c index 74b4e876744..3a9aa645fec 100644 --- a/src/mame/drivers/balsente.c +++ b/src/mame/drivers/balsente.c @@ -563,6 +563,12 @@ static INPUT_PORTS_START( stocker ) PORT_INCLUDE( sentetst ) PORT_MODIFY("SWH") + PORT_DIPNAME( 0x03, 0x01, DEF_STR( Coinage ) ) PORT_DIPLOCATION("H1:1,2") + PORT_DIPSETTING( 0x03, DEF_STR( 2C_1C ) ) + PORT_DIPSETTING( 0x01, DEF_STR( 1C_1C ) ) + PORT_DIPSETTING( 0x02, DEF_STR( 1C_2C ) ) + PORT_DIPSETTING( 0x00, DEF_STR( Free_Play ) ) + PORT_DIPNAME( 0x1c, 0x00, "Bonus Coins" ) PORT_DIPLOCATION("H1:3,4,5") PORT_DIPSETTING( 0x00, DEF_STR( None ) ) PORT_DIPSETTING( 0x04, "2 Coins = 1 Bonus" )