From 1b28667174c070e7f786258862da83f4c21f7d47 Mon Sep 17 00:00:00 2001 From: Angelo Salese Date: Wed, 7 Sep 2016 00:19:11 +0200 Subject: [PATCH] US default != rest of the world defaults, nw --- src/mame/drivers/aerofgt.cpp | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/mame/drivers/aerofgt.cpp b/src/mame/drivers/aerofgt.cpp index 7dd7fe63747..874da46bdea 100644 --- a/src/mame/drivers/aerofgt.cpp +++ b/src/mame/drivers/aerofgt.cpp @@ -783,7 +783,7 @@ static INPUT_PORTS_START( spinlbrk ) PORT_DIPSETTING( 0x0000, "1-1C 1-2 HPs" ) /* According to Spinal Breakers manual, here DSW2 starts */ /* Default in US manual is DEF_STR( Hardest ) */ - PORT_DIPNAME( 0x0300, 0x0000, DEF_STR( Difficulty ) ) PORT_DIPLOCATION("SW2:1,2") + PORT_DIPNAME( 0x0300, 0x0300, DEF_STR( Difficulty ) ) PORT_DIPLOCATION("SW2:1,2") PORT_DIPSETTING( 0x0300, DEF_STR( Normal ) ) PORT_DIPSETTING( 0x0200, DEF_STR( Easy ) ) PORT_DIPSETTING( 0x0100, DEF_STR( Hard ) ) @@ -802,7 +802,7 @@ static INPUT_PORTS_START( spinlbrk ) PORT_DIPSETTING( 0x4000, "32 Hitpoints" ) PORT_DIPSETTING( 0x0000, "40 Hitpoints" ) /* Default in US manual is "5 points" */ - PORT_DIPNAME( 0x8000, 0x0000, "Life Restoration" ) PORT_DIPLOCATION("SW2:8") + PORT_DIPNAME( 0x8000, 0x8000, "Life Restoration" ) PORT_DIPLOCATION("SW2:8") PORT_DIPSETTING( 0x8000, "10 Points" ) PORT_DIPSETTING( 0x0000, "5 Points" ) INPUT_PORTS_END @@ -811,9 +811,17 @@ static INPUT_PORTS_START( spinlbrku ) PORT_INCLUDE(spinlbrk) PORT_MODIFY("DSW") + PORT_DIPNAME( 0x0300, 0x0000, DEF_STR( Difficulty ) ) PORT_DIPLOCATION("SW2:1,2") + PORT_DIPSETTING( 0x0300, DEF_STR( Normal ) ) + PORT_DIPSETTING( 0x0200, DEF_STR( Easy ) ) + PORT_DIPSETTING( 0x0100, DEF_STR( Hard ) ) + PORT_DIPSETTING( 0x0000, DEF_STR( Hardest ) ) PORT_DIPNAME( 0x4000, 0x4000, "Health Pack" ) PORT_DIPLOCATION("SW2:7") PORT_DIPSETTING( 0x4000, "20 Hitpoints" ) PORT_DIPSETTING( 0x0000, "32 Hitpoints" ) + PORT_DIPNAME( 0x8000, 0x0000, "Life Restoration" ) PORT_DIPLOCATION("SW2:8") + PORT_DIPSETTING( 0x8000, "10 Points" ) + PORT_DIPSETTING( 0x0000, "5 Points" ) INPUT_PORTS_END static INPUT_PORTS_START( turbofrc )