From f4ee98d24bc11566bb0652700d8eb1290884d7aa Mon Sep 17 00:00:00 2001 From: 0kmg <9137159+0kmg@users.noreply.github.com> Date: Sun, 12 Dec 2021 08:35:17 -0900 Subject: [PATCH] vsnes.cpp: Fixed Balloon Fight bonus life DIP settings (MT8147). (#8962) --- src/mame/drivers/vsnes.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/mame/drivers/vsnes.cpp b/src/mame/drivers/vsnes.cpp index e303f2d1049..fbe83553cdf 100644 --- a/src/mame/drivers/vsnes.cpp +++ b/src/mame/drivers/vsnes.cpp @@ -748,11 +748,11 @@ static INPUT_PORTS_START( balonfgt ) PORT_DIPNAME( 0x10, 0x00, "Enemy Regeneration" ) PORT_DIPLOCATION("SW2:!5") PORT_DIPSETTING( 0x00, DEF_STR( Low ) ) PORT_DIPSETTING( 0x10, DEF_STR( High ) ) - PORT_DIPNAME( 0x60, 0x20, DEF_STR( Bonus_Life ) ) PORT_DIPLOCATION("SW2:!6,!7") - PORT_DIPSETTING( 0x60, "10,000 Pts" ) - PORT_DIPSETTING( 0x20, "20,000 Pts" ) - PORT_DIPSETTING( 0x40, "40,000 Pts" ) - PORT_DIPSETTING( 0x00, DEF_STR( None ) ) + PORT_DIPNAME( 0x60, 0x40, DEF_STR( Bonus_Life ) ) PORT_DIPLOCATION("SW2:!6,!7") + PORT_DIPSETTING( 0x00, "10,000 Pts" ) + PORT_DIPSETTING( 0x40, "20,000 Pts" ) + PORT_DIPSETTING( 0x20, "40,000 Pts" ) + PORT_DIPSETTING( 0x60, DEF_STR( None ) ) PORT_DIPUNUSED_DIPLOC( 0x80, 0x00, "SW2:!8" ) /* Manual states this is Unused */ INPUT_PORTS_END