summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author briantro <briantro@users.noreply.github.com>2017-07-09 01:02:39 -0500
committer briantro <briantro@users.noreply.github.com>2017-07-09 01:02:39 -0500
commit6ca2da640663f9eeb1d8e0d06d2b6753b28c2df6 (patch)
tree2b830e219ab70e5968a52ae5f30b83c811599f0d
parented276b966916d63532a0460fdd40e74023cd1bb0 (diff)
freekick.cpp: Set default values for unknown dipswitches to "Off" (nw)
-rw-r--r--src/mame/drivers/freekick.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/freekick.cpp b/src/mame/drivers/freekick.cpp
index 7eaff62eadc..0b19d5cafbb 100644
--- a/src/mame/drivers/freekick.cpp
+++ b/src/mame/drivers/freekick.cpp
@@ -474,10 +474,10 @@ static INPUT_PORTS_START( omega )
PORT_DIPNAME( 0x02, 0x02, "Invulnerability" ) PORT_DIPLOCATION("SW3:2") // Ball always bounces up, player never dies
PORT_DIPSETTING( 0x02, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
- PORT_DIPUNKNOWN_DIPLOC(0x04, 0x00, "SW3:3")
- PORT_DIPUNKNOWN_DIPLOC(0x08, 0x00, "SW3:4")
- PORT_DIPUNKNOWN_DIPLOC(0x10, 0x00, "SW3:5")
- PORT_DIPUNKNOWN_DIPLOC(0x20, 0x00, "SW3:6")
+ PORT_DIPUNKNOWN_DIPLOC(0x04, 0x04, "SW3:3")
+ PORT_DIPUNKNOWN_DIPLOC(0x08, 0x08, "SW3:4")
+ PORT_DIPUNKNOWN_DIPLOC(0x10, 0x10, "SW3:5")
+ PORT_DIPUNKNOWN_DIPLOC(0x20, 0x20, "SW3:6")
PORT_DIPNAME( 0xc0, 0xc0, "Prize Version") PORT_DIPLOCATION("SW3:7,8") // Multiple settings for payout level?
PORT_DIPSETTING( 0xc0, DEF_STR( Off ) )
PORT_DIPSETTING( 0x80, "On Setting 1" )