Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/mame/igs/goldstar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8245,7 +8245,7 @@ static INPUT_PORTS_START( lucky8t )
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_UNKNOWN ) // code checks if low to boot

PORT_MODIFY("DSW1")
PORT_DIPNAME( 0x01, 0x01, "Max Bet" ) PORT_DIPLOCATION("DSW1:1")
PORT_DIPNAME( 0x01, 0x01, "Max Bet" ) PORT_DIPLOCATION("DSW1:1")
PORT_DIPSETTING( 0x01, "64" )
PORT_DIPSETTING( 0x00, "120" )
PORT_DIPNAME( 0x06, 0x06, "Bonus / Game Difficulty" ) PORT_DIPLOCATION("DSW1:2,3")
Expand All @@ -8258,10 +8258,10 @@ static INPUT_PORTS_START( lucky8t )
PORT_DIPSETTING( 0x10, "70%" )
PORT_DIPSETTING( 0x08, "80%" )
PORT_DIPSETTING( 0x00, "90%" )
PORT_DIPNAME( 0x20, 0x20, "Reel Speed" ) PORT_DIPLOCATION("DSW1:6")
PORT_DIPNAME( 0x20, 0x20, "Take Score Speed" ) PORT_DIPLOCATION("DSW1:6") // need to press and hold the TAKE button
PORT_DIPSETTING( 0x20, "Normal" )
PORT_DIPSETTING( 0x00, "Fast" )
PORT_DIPNAME( 0xc0, 0xc0, "JP Game Difficulty" ) PORT_DIPLOCATION("DSW1:7,8")
PORT_DIPNAME( 0xc0, 0xc0, "JP Game Difficulty" ) PORT_DIPLOCATION("DSW1:7,8")
PORT_DIPSETTING( 0x00, DEF_STR( Easy ) )
PORT_DIPSETTING( 0x40, DEF_STR( Medium ) )
PORT_DIPSETTING( 0x80, DEF_STR( Hard ) )
Expand Down Expand Up @@ -8653,14 +8653,14 @@ static INPUT_PORTS_START( f16s8l )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )

PORT_MODIFY("DSW4")
PORT_DIPNAME( 0x07, 0x06, "Key In Rate" ) PORT_DIPLOCATION("DSW4:1,2,3")
PORT_DIPNAME( 0x07, 0x03, "Key In Rate" ) PORT_DIPLOCATION("DSW4:1,2,3")
PORT_DIPSETTING( 0x00, "1 Pulse / 5 Credits" )
PORT_DIPSETTING( 0x04, "1 Pulse / 10 Credits" )
PORT_DIPSETTING( 0x02, "1 Pulse / 20 Credits" )
PORT_DIPSETTING( 0x06, "1 Pulse / 100 Credits" )
PORT_DIPSETTING( 0x03, "1 Pulse / 100 Credits" )
PORT_DIPSETTING( 0x01, "1 Pulse / 110 Credits" )
PORT_DIPSETTING( 0x05, "1 Pulse / 120 Credits" )
PORT_DIPSETTING( 0x03, "1 Pulse / 130 Credits" )
PORT_DIPSETTING( 0x06, "1 Pulse / 130 Credits" )
PORT_DIPSETTING( 0x07, "1 Pulse / 140 Credits" )
PORT_DIPNAME( 0x08, 0x08, "Double Up Type" ) PORT_DIPLOCATION("DSW4:4") // both are hi-lo with witches
PORT_DIPSETTING( 0x00, "Type 1" )
Expand Down
Loading