scyclone.cpp: typo fix (nw)

This commit is contained in:
Ivan Vangelista 2017-05-02 10:31:20 +02:00 committed by GitHub
parent b805ecd883
commit 17686164c2

View File

@ -131,17 +131,17 @@ static INPUT_PORTS_START( scyclone )
PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_JOYSTICK_LEFT )
PORT_START("DSW0")
PORT_DIPNAME( 0x03, 0x03, DEF_STR( Lives ) ) PORT_DIPLOCATION("SW1:1,2")
PORT_DIPNAME( 0x03, 0x03, DEF_STR( Lives ) ) PORT_DIPLOCATION("DSW0:1,2")
PORT_DIPSETTING( 0x00, "2" )
PORT_DIPSETTING( 0x01, "3" )
PORT_DIPSETTING( 0x02, "4" )
PORT_DIPSETTING( 0x03, "5" )
PORT_DIPUNKNOWN_DIPLOC( 0x04, 0x04, "DSW1:3" )
PORT_DIPUNKNOWN_DIPLOC( 0x08, 0x00, "DSW1:4" ) // seems to disable collisions
PORT_DIPUNKNOWN_DIPLOC( 0x10, 0x10, "DSW1:5" )
PORT_DIPUNKNOWN_DIPLOC( 0x20, 0x20, "DSW1:6" )
PORT_DIPUNKNOWN_DIPLOC( 0x40, 0x40, "DSW1:7" )
PORT_DIPUNKNOWN_DIPLOC( 0x80, 0x80, "DSW1:8" )
PORT_DIPUNKNOWN_DIPLOC( 0x04, 0x04, "DSW0:3" )
PORT_DIPUNKNOWN_DIPLOC( 0x08, 0x00, "DSW0:4" ) // seems to disable collisions
PORT_DIPUNKNOWN_DIPLOC( 0x10, 0x10, "DSW0:5" )
PORT_DIPUNKNOWN_DIPLOC( 0x20, 0x20, "DSW0:6" )
PORT_DIPUNKNOWN_DIPLOC( 0x40, 0x40, "DSW0:7" )
PORT_DIPUNKNOWN_DIPLOC( 0x80, 0x80, "DSW0:8" )
INPUT_PORTS_END
WRITE8_MEMBER(scyclone_state::scyclone_port06_w)