summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2021-08-06 20:46:21 +0200
committer GitHub <noreply@github.com>2021-08-06 20:46:21 +0200
commita43c08a651d44da1e3183499cc5b33188386f03a (patch)
tree337d8bf5b3834e191a4f012c88fef2204c99cd28
parent8262c548a09376c54fee5323117bbe8f81d2b2f4 (diff)
taito_f2.cpp: fix ninjak default lives to 3 (matches all OFF convention)
-rw-r--r--src/mame/drivers/taito_f2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/taito_f2.cpp b/src/mame/drivers/taito_f2.cpp
index 8a42929eb21..f637c6b6fbd 100644
--- a/src/mame/drivers/taito_f2.cpp
+++ b/src/mame/drivers/taito_f2.cpp
@@ -1911,7 +1911,7 @@ static INPUT_PORTS_START( hthero )
INPUT_PORTS_END
-static INPUT_PORTS_START( footchmpbl )
+static INPUT_PORTS_START( footchmpbl )
PORT_INCLUDE(footchmp)
PORT_MODIFY("IN1")
@@ -1947,7 +1947,7 @@ static INPUT_PORTS_START( ninjak )
PORT_DIPSETTING( 0x08, "TROG (4 players / 2 coin slots)" )
PORT_DIPSETTING( 0x04, "MTX2 (4 players / 2 cabinets combined)" )
PORT_DIPSETTING( 0x00, "TMNT (4 players / 4 coin slots)" )
- PORT_DIPNAME( 0x30, 0x10, DEF_STR( Lives ) ) PORT_DIPLOCATION("SW2:5,6")
+ PORT_DIPNAME( 0x30, 0x30, DEF_STR( Lives ) ) PORT_DIPLOCATION("SW2:5,6")
PORT_DIPSETTING( 0x20, "2" )
PORT_DIPSETTING( 0x30, "3" )
PORT_DIPSETTING( 0x10, "4" )