summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Mitchell Hancock <31096423+Dunard@users.noreply.github.com>2022-06-15 12:14:54 -0500
committer GitHub <noreply@github.com>2022-06-15 19:14:54 +0200
commitd345b7ec2ccf3c9a958bddd3906a202e42a88809 (patch)
tree9a5c53b943b9eb5268d62421b6e3f38b8fb5dd9e
parent92cde07a35b9d5cd24b5ac0dbf9c5f5e8313a51a (diff)
igs17.cpp: Fixed demo sounds DIP switch (#9933)
-rw-r--r--src/mame/drivers/igs017.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/igs017.cpp b/src/mame/drivers/igs017.cpp
index 174e072896f..77d76bec7af 100644
--- a/src/mame/drivers/igs017.cpp
+++ b/src/mame/drivers/igs017.cpp
@@ -3887,9 +3887,9 @@ INPUT_PORTS_END
static INPUT_PORTS_START( tarzan )
PORT_START("DSW1")
- PORT_DIPNAME( 0x01, 0x01, DEF_STR( Demo_Sounds ) ) PORT_DIPLOCATION("SW1:1")
- PORT_DIPSETTING( 0x00, DEF_STR( Off ) )
- PORT_DIPSETTING( 0x01, DEF_STR( On ) )
+ PORT_DIPNAME( 0x01, 0x00, DEF_STR( Demo_Sounds ) ) PORT_DIPLOCATION("SW1:1")
+ PORT_DIPSETTING( 0x01, DEF_STR( Off ) )
+ PORT_DIPSETTING( 0x00, DEF_STR( On ) )
PORT_DIPNAME( 0x0e, 0x0e, "Coin Value" ) PORT_DIPLOCATION("SW1:2,3,4")
PORT_DIPSETTING( 0x0e, "1" )
PORT_DIPSETTING( 0x0c, "2" )