summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Michaël Banaan Ananas <happppp@users.noreply.github.com>2013-12-21 20:30:27 +0000
committer Michaël Banaan Ananas <happppp@users.noreply.github.com>2013-12-21 20:30:27 +0000
commit8f873cbae2aba26f086054cf0f2faecfb0fd430c (patch)
tree6506f36b71196f24509da9d60afc53efd7ac60cb
parente4f1f41a2a2180c106bbbf3b31106e0332710a07 (diff)
WIP for: 05388: bloxeed: Incorrect DIP switch info.
-rw-r--r--src/mame/drivers/segac2.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/drivers/segac2.c b/src/mame/drivers/segac2.c
index 1319fb68588..4b3d5d8c6d3 100644
--- a/src/mame/drivers/segac2.c
+++ b/src/mame/drivers/segac2.c
@@ -1075,15 +1075,15 @@ static INPUT_PORTS_START( bloxeedc )
PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_UNUSED ) /* Button 3 Unused */
PORT_MODIFY("DSW")
- PORT_DIPNAME( 0x01, 0x01, "VS Mode Price" ) PORT_DIPLOCATION("SW2:1")
- PORT_DIPSETTING( 0x00, "Same as Ordinary" )
- PORT_DIPSETTING( 0x01, "Double as Ordinary" )
- PORT_DIPNAME( 0x02, 0x02, "Credits to Start" ) PORT_DIPLOCATION("SW2:2")
- PORT_DIPSETTING( 0x02, "1" )
- PORT_DIPSETTING( 0x00, "2" )
- PORT_DIPNAME( 0x04, 0x04, DEF_STR( Unknown ) ) PORT_DIPLOCATION("SW2:3") // also coinage related?
- PORT_DIPSETTING( 0x04, DEF_STR( Off ) )
- PORT_DIPSETTING( 0x00, DEF_STR( On ) )
+ PORT_DIPNAME( 0x07, 0x07, DEF_STR( Coinage ) ) PORT_DIPLOCATION("SW2:1,2,3") // needs to be double checked
+ PORT_DIPSETTING( 0x00, "0" )
+ PORT_DIPSETTING( 0x01, "1" )
+ PORT_DIPSETTING( 0x02, "2" )
+ PORT_DIPSETTING( 0x03, "3" )
+ PORT_DIPSETTING( 0x04, "4" )
+ PORT_DIPSETTING( 0x05, "5" )
+ PORT_DIPSETTING( 0x06, "6" )
+ PORT_DIPSETTING( 0x07, "7" )
PORT_DIPNAME( 0x08, 0x00, DEF_STR( Demo_Sounds ) ) PORT_DIPLOCATION("SW2:4")
PORT_DIPSETTING( 0x08, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )