summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Scott Stone <tafoid@gmail.com>2020-06-10 17:05:38 -0400
committer Scott Stone <tafoid@gmail.com>2020-06-10 17:05:38 -0400
commit054fcac44e0237d012d9f577b52a7808d36ca871 (patch)
tree1af8663790c5073d91379e955f0d3b779e53ab96
parent56861bc5bf050f0acffa7e0d907d91ebab6c1799 (diff)
btime3: Fix Bonus Life values. Fixes MT#7678 (nw)
-rw-r--r--src/mame/drivers/btime.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mame/drivers/btime.cpp b/src/mame/drivers/btime.cpp
index 75524d8120a..1a4498ab4ec 100644
--- a/src/mame/drivers/btime.cpp
+++ b/src/mame/drivers/btime.cpp
@@ -468,6 +468,13 @@ static INPUT_PORTS_START( btime3 ) // Used for btime3 and btimem
PORT_DIPSETTING( 0x00, "Sound Test Only" )
PORT_DIPSETTING( 0x10, "Cross Hatch Only" )
PORT_DIPSETTING( 0x20, "Normal Test" ) // Use Coin A to advance the tests
+
+ PORT_MODIFY("DSW2")
+ PORT_DIPNAME( 0x06, 0x06, DEF_STR( Bonus_Life ) ) PORT_DIPLOCATION("SW2:2,3")
+ PORT_DIPSETTING( 0x06, "30000" )
+ PORT_DIPSETTING( 0x04, "50000" )
+ PORT_DIPSETTING( 0x02, "80000" )
+ PORT_DIPSETTING( 0x00, DEF_STR( None ) )
INPUT_PORTS_END
static INPUT_PORTS_START( cookrace )