From cc696a7552206d05f5bf3e809648caa4fd3becfd Mon Sep 17 00:00:00 2001 From: Scott Stone Date: Tue, 9 Feb 2010 00:34:28 +0000 Subject: [PATCH] astrocde.c - Fixed the Bonus Life dipswitch for gorf and clones. It's state was inverted. --- src/mame/drivers/astrocde.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mame/drivers/astrocde.c b/src/mame/drivers/astrocde.c index d2cc8fe2362..039a0cd90e8 100644 --- a/src/mame/drivers/astrocde.c +++ b/src/mame/drivers/astrocde.c @@ -996,9 +996,9 @@ static INPUT_PORTS_START( gorf ) PORT_DIPNAME( 0x10, 0x00, "Lives per Credit" ) PORT_DIPLOCATION("S1:5") PORT_DIPSETTING( 0x10, "2" ) PORT_DIPSETTING( 0x00, "3" ) - PORT_DIPNAME( 0x20, 0x00, DEF_STR( Bonus_Life ) ) PORT_DIPLOCATION("S1:6") - PORT_DIPSETTING( 0x00, "Mission 5" ) - PORT_DIPSETTING( 0x20, DEF_STR( None ) ) + PORT_DIPNAME( 0x20, 0x20, DEF_STR( Bonus_Life ) ) PORT_DIPLOCATION("S1:6") + PORT_DIPSETTING( 0x00, DEF_STR( None ) ) + PORT_DIPSETTING( 0x20, "Mission 5" ) PORT_DIPNAME( 0x40, 0x40, DEF_STR( Free_Play ) ) PORT_DIPLOCATION("S1:7") PORT_DIPSETTING( 0x40, DEF_STR( Off ) ) PORT_DIPSETTING( 0x00, DEF_STR( On ) )