correct dipswitch location order in World Rally to match actual dips as seen by the game / service menu

This commit is contained in:
Brian Troha 2010-07-01 02:08:24 +00:00
parent de771cbfeb
commit 884cadfde0

View File

@ -155,7 +155,7 @@ static const ds5002fp_config dallas_config =
static INPUT_PORTS_START( wrally ) static INPUT_PORTS_START( wrally )
PORT_START("DSW") PORT_START("DSW")
PORT_DIPNAME( 0x0003, 0x0003, DEF_STR( Difficulty ) ) PORT_DIPLOCATION("SW2:7,8") PORT_DIPNAME( 0x0003, 0x0003, DEF_STR( Difficulty ) ) PORT_DIPLOCATION("SW2:8,7")
PORT_DIPSETTING( 0x0003, DEF_STR( Normal ) ) PORT_DIPSETTING( 0x0003, DEF_STR( Normal ) )
PORT_DIPSETTING( 0x0002, DEF_STR( Easy ) ) PORT_DIPSETTING( 0x0002, DEF_STR( Easy ) )
PORT_DIPSETTING( 0x0001, DEF_STR( Hard ) ) PORT_DIPSETTING( 0x0001, DEF_STR( Hard ) )
@ -163,7 +163,7 @@ static INPUT_PORTS_START( wrally )
PORT_DIPNAME( 0x0004, 0x0004, "Number of Joysticks" ) PORT_DIPLOCATION("SW2:6") PORT_DIPNAME( 0x0004, 0x0004, "Number of Joysticks" ) PORT_DIPLOCATION("SW2:6")
PORT_DIPSETTING( 0x0004, "2" ) PORT_DIPSETTING( 0x0004, "2" )
PORT_DIPSETTING( 0x0000, "1" ) PORT_DIPSETTING( 0x0000, "1" )
PORT_DIPNAME( 0x0018, 0x0018, "Control Configuration" ) PORT_DIPLOCATION("SW2:4,5") PORT_DIPNAME( 0x0018, 0x0018, "Control Configuration" ) PORT_DIPLOCATION("SW2:5,4")
PORT_DIPSETTING( 0x0018, DEF_STR( Joystick ) ) PORT_DIPSETTING( 0x0018, DEF_STR( Joystick ) )
PORT_DIPSETTING( 0x0010, "Pot Wheel" ) PORT_DIPSETTING( 0x0010, "Pot Wheel" )
PORT_DIPSETTING( 0x0000, "Optical Wheel" ) PORT_DIPSETTING( 0x0000, "Optical Wheel" )
@ -173,8 +173,8 @@ static INPUT_PORTS_START( wrally )
PORT_DIPNAME( 0x0040, 0x0040, DEF_STR( Cabinet ) ) PORT_DIPLOCATION("SW2:2") PORT_DIPNAME( 0x0040, 0x0040, DEF_STR( Cabinet ) ) PORT_DIPLOCATION("SW2:2")
PORT_DIPSETTING( 0x0040, DEF_STR( Upright ) ) PORT_DIPSETTING( 0x0040, DEF_STR( Upright ) )
PORT_DIPSETTING( 0x0000, DEF_STR( Cocktail ) ) PORT_DIPSETTING( 0x0000, DEF_STR( Cocktail ) )
PORT_SERVICE( 0x0080, IP_ACTIVE_LOW ) PORT_DIPLOCATION("SW2:1") PORT_SERVICE_DIPLOC( 0x0080, IP_ACTIVE_LOW, "SW2:1" )
PORT_DIPNAME( 0x0700, 0x0700, DEF_STR( Coin_A ) ) PORT_DIPLOCATION("SW1:6,7,8") PORT_DIPNAME( 0x0700, 0x0700, DEF_STR( Coin_A ) ) PORT_DIPLOCATION("SW1:8,7,6")
PORT_DIPSETTING( 0x0700, DEF_STR( 1C_1C ) ) PORT_DIPSETTING( 0x0700, DEF_STR( 1C_1C ) )
PORT_DIPSETTING( 0x0000, DEF_STR( 3C_4C ) ) PORT_DIPSETTING( 0x0000, DEF_STR( 3C_4C ) )
PORT_DIPSETTING( 0x0100, DEF_STR( 2C_3C ) ) PORT_DIPSETTING( 0x0100, DEF_STR( 2C_3C ) )
@ -183,7 +183,7 @@ static INPUT_PORTS_START( wrally )
PORT_DIPSETTING( 0x0400, DEF_STR( 1C_4C ) ) PORT_DIPSETTING( 0x0400, DEF_STR( 1C_4C ) )
PORT_DIPSETTING( 0x0300, DEF_STR( 1C_5C ) ) PORT_DIPSETTING( 0x0300, DEF_STR( 1C_5C ) )
PORT_DIPSETTING( 0x0200, DEF_STR( 1C_6C ) ) PORT_DIPSETTING( 0x0200, DEF_STR( 1C_6C ) )
PORT_DIPNAME( 0x3800, 0x3800, DEF_STR( Coin_B ) ) PORT_DIPLOCATION("SW1:3,4,5") PORT_DIPNAME( 0x3800, 0x3800, DEF_STR( Coin_B ) ) PORT_DIPLOCATION("SW1:5,4,3")
PORT_DIPSETTING( 0x1000, DEF_STR( 6C_1C ) ) PORT_DIPSETTING( 0x1000, DEF_STR( 6C_1C ) )
PORT_DIPSETTING( 0x1800, DEF_STR( 5C_1C ) ) PORT_DIPSETTING( 0x1800, DEF_STR( 5C_1C ) )
PORT_DIPSETTING( 0x2000, DEF_STR( 4C_1C ) ) PORT_DIPSETTING( 0x2000, DEF_STR( 4C_1C ) )