summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2009-06-04 23:23:59 +0000
committer Angelo Salese <angelosa@users.noreply.github.com>2009-06-04 23:23:59 +0000
commit0868adce22183764a8bb2750e16737d093143133 (patch)
treec5cd053246635851a88134b8921ff6118c70fce9
parent1d909542156efe0f29b790b47b09229692da35be (diff)
Small DIP-Switch fix
-rw-r--r--src/mame/drivers/suprgolf.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mame/drivers/suprgolf.c b/src/mame/drivers/suprgolf.c
index 17a485ef983..e75b03b94eb 100644
--- a/src/mame/drivers/suprgolf.c
+++ b/src/mame/drivers/suprgolf.c
@@ -344,7 +344,10 @@ static INPUT_PORTS_START( suprgolf )
PORT_DIPSETTING( 0x10, "2" )
PORT_DIPSETTING( 0x30, "3" )
PORT_DIPSETTING( 0x20, "4" )
- PORT_DIPUNUSED_DIPLOC( 0x40, 0x00, "SW1:7" )
+ /* According to the manual, Allow Continue should be dip-sw 2:5 */
+ PORT_DIPNAME( 0x40, 0x40, DEF_STR( Allow_Continue ) ) PORT_DIPLOCATION("SW1:7")
+ PORT_DIPSETTING( 0x00, DEF_STR( No ) )
+ PORT_DIPSETTING( 0x40, DEF_STR( Yes ) )
PORT_DIPNAME( 0x80, 0x80, DEF_STR( Demo_Sounds ) ) PORT_DIPLOCATION("SW1:8")
PORT_DIPSETTING( 0x00, DEF_STR( Off ) )
PORT_DIPSETTING( 0x80, DEF_STR( On ) )
@@ -359,9 +362,7 @@ static INPUT_PORTS_START( suprgolf )
PORT_DIPNAME( 0x08, 0x08, DEF_STR( Flip_Screen ) ) PORT_DIPLOCATION("SW2:4")
PORT_DIPSETTING( 0x08, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
- PORT_DIPNAME( 0x10, 0x10, DEF_STR( Allow_Continue ) ) PORT_DIPLOCATION("SW2:5")
- PORT_DIPSETTING( 0x00, DEF_STR( No ) )
- PORT_DIPSETTING( 0x10, DEF_STR( Yes ) )
+ PORT_DIPUNUSED_DIPLOC( 0x10, 0x00, "SW2:5" )
PORT_DIPUNUSED_DIPLOC( 0x20, 0x00, "SW2:6" )
PORT_DIPUNUSED_DIPLOC( 0x40, 0x00, "SW2:7" )
PORT_DIPUNUSED_DIPLOC( 0x80, 0x00, "SW2:8" )