From 1e3b25844b2340d87d6d3d42fb00bb854ff39b8b Mon Sep 17 00:00:00 2001 From: Brian Troha Date: Fri, 15 Aug 2014 19:23:56 +0000 Subject: [PATCH] metro.c: Figured out one dipswitch in Mouse Shooter GoGo - NW --- src/mame/drivers/metro.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mame/drivers/metro.c b/src/mame/drivers/metro.c index 03fddae13ce..d91705c8fa8 100644 --- a/src/mame/drivers/metro.c +++ b/src/mame/drivers/metro.c @@ -2254,9 +2254,9 @@ static INPUT_PORTS_START( msgogo ) PORT_DIPNAME( 0x0800, 0x0800, DEF_STR( Unknown ) ) PORT_DIPLOCATION("SW2:4") PORT_DIPSETTING( 0x0800, DEF_STR( Off ) ) PORT_DIPSETTING( 0x0000, DEF_STR( On ) ) - PORT_DIPNAME( 0x1000, 0x1000, DEF_STR( Unknown ) ) PORT_DIPLOCATION("SW2:5") - PORT_DIPSETTING( 0x1000, DEF_STR( Off ) ) - PORT_DIPSETTING( 0x0000, DEF_STR( On ) ) + PORT_DIPNAME( 0x1000, 0x1000, "Allow P2 to Join Game" ) PORT_DIPLOCATION("SW2:5") + PORT_DIPSETTING( 0x0000, DEF_STR( Off ) ) + PORT_DIPSETTING( 0x1000, DEF_STR( On ) ) PORT_DIPNAME( 0x2000, 0x2000, DEF_STR( Lives ) ) PORT_DIPLOCATION("SW2:6") PORT_DIPSETTING( 0x2000, "2" ) PORT_DIPSETTING( 0x0000, "3" )