From 38ff9a4d8918cb9895bbe0a676e672e567af8c1a Mon Sep 17 00:00:00 2001 From: RobertoFresca Date: Mon, 16 May 2016 22:26:53 -0300 Subject: [PATCH] Flaming 7: Inputs WIP. First DIP switches bank completed. [Roberto Fresca] --- src/mame/drivers/goldstar.cpp | 33 ++++++++++++++++----------------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/src/mame/drivers/goldstar.cpp b/src/mame/drivers/goldstar.cpp index 0680e73771d..63aa5722996 100644 --- a/src/mame/drivers/goldstar.cpp +++ b/src/mame/drivers/goldstar.cpp @@ -6965,23 +6965,22 @@ static INPUT_PORTS_START( flaming7 ) PORT_DIPSETTING( 0x02, "Ticket Printer" ) PORT_DIPSETTING( 0x01, "Hopper Payout" ) PORT_DIPSETTING( 0x00, "Remote Clear" ) - PORT_DIPNAME( 0x04, 0x04, "Reels Speed" ) - PORT_DIPSETTING( 0x04, "Fast" ) - PORT_DIPSETTING( 0x00, "Slow" ) - PORT_DIPNAME( 0x08, 0x08, "DSW1_08" ) - PORT_DIPSETTING( 0x08, DEF_STR( Off ) ) - PORT_DIPSETTING( 0x00, DEF_STR( On ) ) - PORT_DIPNAME( 0x30, 0x30, "Reels Graphics" ) - PORT_DIPSETTING( 0x30, "Regular Fruits" ) - PORT_DIPSETTING( 0x20, "Numbers" ) - PORT_DIPSETTING( 0x10, "Custom 1: Red, White & Blue 7's" ) - PORT_DIPSETTING( 0x00, "Custom 2: Hollywood Nights" ) - PORT_DIPNAME( 0x40, 0x40, "DSW1_40" ) - PORT_DIPSETTING( 0x40, DEF_STR( Off ) ) - PORT_DIPSETTING( 0x00, DEF_STR( On ) ) - PORT_DIPNAME( 0x80, 0x80, "DSW1_80" ) - PORT_DIPSETTING( 0x80, DEF_STR( Off ) ) - PORT_DIPSETTING( 0x00, DEF_STR( On ) ) + PORT_DIPNAME( 0x04, 0x04, "Game Speed" ) + PORT_DIPSETTING( 0x04, "Fast Game" ) + PORT_DIPSETTING( 0x00, "Slow Game" ) + PORT_DIPNAME( 0x08, 0x08, "Double-Up" ) + PORT_DIPSETTING( 0x08, DEF_STR( No ) ) + PORT_DIPSETTING( 0x00, DEF_STR( Yes ) ) + PORT_DIPNAME( 0x30, 0x30, "Graphics Type" ) + PORT_DIPSETTING( 0x30, "Regular Fruit" ) + PORT_DIPSETTING( 0x20, "Graphics Option 1" ) // Numbers. + PORT_DIPSETTING( 0x10, "Graphics Option 2" ) // Red, White & Blue 7's. + PORT_DIPSETTING( 0x00, "Graphics Option 3" ) // Hollywood Nights. + PORT_DIPNAME( 0xc0, 0xc0, "Paytable" ) + PORT_DIPSETTING( 0xc0, "9322" ) + PORT_DIPSETTING( 0x80, "9323" ) + PORT_DIPSETTING( 0x40, "9324" ) + PORT_DIPSETTING( 0x00, "9321" ) PORT_START("DSW2") PORT_DIPNAME( 0x01, 0x01, "DSW2_01" )