summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/snk.cpp
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2018-10-30 23:16:38 +1100
committer Robbbert <Robbbert@users.noreply.github.com>2018-10-30 23:16:38 +1100
commit0340e8ac2cea61bce122b8e44fb8b64f86bc804c (patch)
treead1649c28664f31eb65dc29265bbd495bc33f830 /src/mame/drivers/snk.cpp
parent9a49527058450fa61c2665937002dd506632f154 (diff)
parentfc726060143d454c838fba9c82ce830c63a008c0 (diff)
Merge remote-tracking branch 'upstream/release0203'
Diffstat (limited to 'src/mame/drivers/snk.cpp')
-rw-r--r--src/mame/drivers/snk.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mame/drivers/snk.cpp b/src/mame/drivers/snk.cpp
index 6f785985e91..c30141723be 100644
--- a/src/mame/drivers/snk.cpp
+++ b/src/mame/drivers/snk.cpp
@@ -3281,9 +3281,10 @@ static INPUT_PORTS_START( tdfever )
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_START("DSW1")
- PORT_DIPNAME( 0x01, 0x00, DEF_STR( Allow_Continue ) ) PORT_DIPLOCATION("DSW1:1")
- PORT_DIPSETTING( 0x01, DEF_STR( No ) )
- PORT_DIPSETTING( 0x00, DEF_STR( Yes ) )
+ // TODO: tdfever2 has different dip switches (at least allow continue seems ignored)
+ PORT_DIPNAME( 0x01, 0x01, DEF_STR( Allow_Continue ) ) PORT_DIPLOCATION("DSW1:1")
+ PORT_DIPSETTING( 0x00, DEF_STR( No ) )
+ PORT_DIPSETTING( 0x01, DEF_STR( Yes ) )
PORT_DIPNAME( 0x02, 0x02, DEF_STR( Cabinet ) ) PORT_DIPLOCATION("DSW1:2")
PORT_DIPSETTING( 0x02, "2 Player Upright" )
PORT_DIPSETTING( 0x00, "4 Player Cocktail" )