summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Roberto Zandona <robertoz@mamedev.org>2009-08-02 07:54:19 +0000
committer Roberto Zandona <robertoz@mamedev.org>2009-08-02 07:54:19 +0000
commit567ca7d7dde52309b3f5e8752cbeb2b5fb9cda2e (patch)
tree0d6367793a26ba1eae5de56212e7908370a11a63
parentbac28fa7a46a8f0f1199f017e2ebd2a4ba1250cc (diff)
bowl3d: added some dsws
-rw-r--r--src/mame/drivers/meadows.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/meadows.c b/src/mame/drivers/meadows.c
index 098747d1a2e..3b0767901a1 100644
--- a/src/mame/drivers/meadows.c
+++ b/src/mame/drivers/meadows.c
@@ -461,7 +461,7 @@ static INPUT_PORTS_START( bowl3d )
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_PLAYER(1)
PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_PLAYER(1)
PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT ) PORT_PLAYER(1)
- PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_UNKNOWN )
+ PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_START1 )
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_UNKNOWN )
PORT_START("INPUTS2")
@@ -471,7 +471,7 @@ static INPUT_PORTS_START( bowl3d )
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_PLAYER(2)
PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_PLAYER(2)
PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT ) PORT_PLAYER(2)
- PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_START1 )
+ PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_START2 )
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_UNKNOWN )
PORT_START("DSW")
@@ -481,10 +481,10 @@ static INPUT_PORTS_START( bowl3d )
PORT_DIPNAME( 0x02, 0x00, DEF_STR( Unused ) )
PORT_DIPSETTING( 0x00, DEF_STR( Off ) )
PORT_DIPSETTING( 0x02, DEF_STR( On ) )
- PORT_DIPNAME( 0x04, 0x00, DEF_STR( Unused ) )
- PORT_DIPSETTING( 0x00, DEF_STR( Off ) )
- PORT_DIPSETTING( 0x04, DEF_STR( On ) )
- PORT_DIPNAME( 0x08, 0x00, DEF_STR( Unused ) )
+ PORT_DIPNAME( 0x04, 0x00, "Coin Option" )
+ PORT_DIPSETTING( 0x00, "2 Players / 1 Coin" )
+ PORT_DIPSETTING( 0x04, "1/2 Player(s) / 1/2 Coin(s)" )
+ PORT_DIPNAME( 0x08, 0x00, "Beer Frame" )
PORT_DIPSETTING( 0x00, DEF_STR( Off ) )
PORT_DIPSETTING( 0x08, DEF_STR( On ) )
PORT_DIPNAME( 0x10, 0x00, DEF_STR( Unused ) )