Skip to content

Update segaufo.cpp #13663

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
18 changes: 9 additions & 9 deletions src/mame/sega/segaufo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -777,16 +777,16 @@ static INPUT_PORTS_START( ufo21 )
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_UNKNOWN )

PORT_START("DSW1") // coinage
PORT_DIPNAME( 0x01, 0x01, "UNK1-01" )
PORT_DIPNAME( 0x01, 0x01, "1 coin as 2 PLAY" )
PORT_DIPSETTING( 0x01, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
PORT_DIPNAME( 0x02, 0x02, "UNK1-02" )
PORT_DIPNAME( 0x02, 0x02, "1 coin as 3 PLAY, 2 coins as 6 PLAY, 3 coins as 9 PLAY" )
PORT_DIPSETTING( 0x02, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
PORT_DIPNAME( 0x04, 0x04, "UNK1-04" )
PORT_DIPNAME( 0x04, 0x04, "1 coin as 6 PLAY, 2 coins as 9 PLAY" )
PORT_DIPSETTING( 0x04, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
PORT_DIPNAME( 0x08, 0x08, "UNK1-08" )
PORT_DIPNAME( 0x08, 0x08, "2 coins as 1 PLAY, 3 coins as 2 PLAY" )
PORT_DIPSETTING( 0x08, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
PORT_DIPNAME( 0x10, 0x10, "UNK1-10" )
Expand All @@ -809,19 +809,19 @@ static INPUT_PORTS_START( ufo21 )
PORT_DIPNAME( 0x02, 0x02, "UNK2-02" )
PORT_DIPSETTING( 0x02, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
PORT_DIPNAME( 0x04, 0x04, "UNK2-04" )
PORT_DIPNAME( 0x04, 0x04, "Advertise BGM CHRISTMAS ON" )
PORT_DIPSETTING( 0x04, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
PORT_DIPNAME( 0x08, 0x08, "UNK2-08 Demo Music On" )
PORT_DIPNAME( 0x08, 0x08, "Advertise BGM NORMAL ON" )
PORT_DIPSETTING( 0x08, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
PORT_DIPNAME( 0x10, 0x10, "UNK2-10" )
PORT_DIPNAME( 0x10, 0x10, "TIME ATTACK 1" )
PORT_DIPSETTING( 0x10, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
PORT_DIPNAME( 0x20, 0x20, "UNK2-20" )
PORT_DIPNAME( 0x20, 0x20, "TIME ATTACK 2" )
PORT_DIPSETTING( 0x20, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
PORT_DIPNAME( 0x40, 0x40, "UNK2-40" )
PORT_DIPNAME( 0x40, 0x40, "TIME ATTACK 3" )
PORT_DIPSETTING( 0x40, DEF_STR( Off ) )
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
PORT_DIPNAME( 0x80, 0x80, "UNK2-80" )
Expand Down