diff options
| author | 2017-09-08 07:27:11 +0200 | |
|---|---|---|
| committer | 2017-09-08 07:27:11 +0200 | |
| commit | b6ee396c430341a879c143fa5e6b09a4265a2f6c (patch) | |
| tree | 42068abf7ed77131d0516d13541f9cb7ec9588f0 /src | |
| parent | 11d6d9311d62430917e14dddfe961c25ea98918d (diff) | |
subsino.cpp: fixed MT06673 (nw)
Diffstat (limited to 'src')
| -rw-r--r-- | src/mame/drivers/subsino.cpp | 18 |
1 files 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 ) |
