diff options
author | 2022-03-12 21:03:43 +0000 | |
---|---|---|
committer | 2022-03-12 16:03:43 -0500 | |
commit | 7c85af71db086d60912c92f0cb6f9b7a051e7340 (patch) | |
tree | a6a58c97a3cd3e63f5e4a1f7cbe6a9608a6a75dd | |
parent | 3b52af1d1c0cc6d605eff6ec1df4a18d724a3cfa (diff) |
zodiack.cpp: add bonus life DIP switches (MT08236) (#9397)
-rw-r--r-- | src/mame/drivers/zodiack.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/mame/drivers/zodiack.cpp b/src/mame/drivers/zodiack.cpp index 2d5daebe1d4..944557918da 100644 --- a/src/mame/drivers/zodiack.cpp +++ b/src/mame/drivers/zodiack.cpp @@ -457,12 +457,11 @@ static INPUT_PORTS_START( bounty ) PORT_DIPSETTING( 0x00, DEF_STR( 1C_1C ) ) PORT_DIPSETTING( 0x04, DEF_STR( 1C_2C ) ) PORT_DIPSETTING( 0x0c, DEF_STR( Free_Play ) ) - PORT_DIPNAME( 0x10, 0x00, DEF_STR( Unknown ) ) - PORT_DIPSETTING( 0x00, DEF_STR( Off ) ) - PORT_DIPSETTING( 0x10, DEF_STR( On ) ) - PORT_DIPNAME( 0x20, 0x00, DEF_STR( Unknown ) ) - PORT_DIPSETTING( 0x00, DEF_STR( Off ) ) - PORT_DIPSETTING( 0x20, DEF_STR( On ) ) + PORT_DIPNAME( 0x30, 0x00, DEF_STR( Bonus_Life ) ) + PORT_DIPSETTING( 0x00, "20k 100k" ) + PORT_DIPSETTING( 0x10, "40k 100k" ) + PORT_DIPSETTING( 0x20, "20k 200k" ) + PORT_DIPSETTING( 0x30, "40k 200k" ) PORT_DIPNAME( 0x40, 0x40, DEF_STR( Cabinet ) ) PORT_DIPSETTING( 0x40, DEF_STR( Upright ) ) PORT_DIPSETTING( 0x00, DEF_STR( Cocktail ) ) |