From b6ee396c430341a879c143fa5e6b09a4265a2f6c Mon Sep 17 00:00:00 2001 From: Ivan Vangelista Date: Fri, 8 Sep 2017 07:27:11 +0200 Subject: subsino.cpp: fixed MT06673 (nw) --- src/mame/drivers/subsino.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/mame/drivers/subsino.cpp b/src/mame/drivers/subsino.cpp index 682981fd2b5..4de5cf8ea5e 100644 --- a/src/mame/drivers/subsino.cpp +++ b/src/mame/drivers/subsino.cpp @@ -1636,15 +1636,15 @@ static INPUT_PORTS_START( stbsub ) PORT_DIPNAME( 0x10, 0x10, "Double-Up Game" ) PORT_DIPLOCATION("SW4:5") PORT_DIPSETTING( 0x10, "Dancers / Panties Colors" ) PORT_DIPSETTING( 0x00, "Cards / Seven-Bingo" ) - PORT_DIPNAME( 0x20, 0x20, DEF_STR( Unknown ) ) PORT_DIPLOCATION("SW4:6") - PORT_DIPSETTING( 0x20, DEF_STR( Off ) ) - PORT_DIPSETTING( 0x00, DEF_STR( On ) ) - PORT_DIPNAME( 0x40, 0x40, DEF_STR( Unknown ) ) PORT_DIPLOCATION("SW4:7") - PORT_DIPSETTING( 0x40, DEF_STR( Off ) ) - PORT_DIPSETTING( 0x00, DEF_STR( On ) ) - PORT_DIPNAME( 0x80, 0x80, DEF_STR( Unknown ) ) PORT_DIPLOCATION("SW4:8") - PORT_DIPSETTING( 0x80, DEF_STR( Off ) ) - PORT_DIPSETTING( 0x00, DEF_STR( On ) ) + PORT_DIPNAME( 0xe0, 0xe0, "Clear Ticket Unit" ) PORT_DIPLOCATION("SW4:6,7,8") + PORT_DIPSETTING( 0x00, "500" ) + PORT_DIPSETTING( 0x20, "100" ) + PORT_DIPSETTING( 0x40, "50" ) + PORT_DIPSETTING( 0x60, "25" ) + PORT_DIPSETTING( 0x80, "20" ) + PORT_DIPSETTING( 0xa0, "10" ) + PORT_DIPSETTING( 0xc0, "5" ) + PORT_DIPSETTING( 0xe0, "1" ) PORT_START("INA") PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_UNKNOWN ) -- cgit v1.2.3