pacman.cpp: eeekk port_name clarifications as well as further details for 'Difficulty' dip switch settings. Fixes MT#06461 [Tafoid]

This commit is contained in:
Scott Stone 2016-12-28 21:24:51 -05:00
parent aab749f5e5
commit 0cbc070ce4

View File

@ -2374,11 +2374,11 @@ static INPUT_PORTS_START( eeekk )
PORT_MODIFY("IN0")
PORT_SERVICE_NO_TOGGLE( 0x10, 0x10 )
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_UNKNOWN )
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_PLAYER(2)
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_PLAYER(2) PORT_NAME( "P2 Attack" )
PORT_MODIFY("IN1")
PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_UNKNOWN )
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_PLAYER(1)
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_PLAYER(1) PORT_NAME( "P1 Attack/2 Player Start" )
PORT_MODIFY("DSW1")
PORT_DIPNAME( 0x03, 0x03, DEF_STR(Lives) ) PORT_DIPLOCATION("SW:1,2")
@ -2387,14 +2387,14 @@ static INPUT_PORTS_START( eeekk )
PORT_DIPSETTING( 0x01, "5" )
PORT_DIPSETTING( 0x00, "6" )
PORT_DIPNAME( 0x1c, 0x10, DEF_STR( Difficulty ) ) PORT_DIPLOCATION("SW:3,4,5")
PORT_DIPSETTING( 0x00, "8" )
PORT_DIPSETTING( 0x00, "8 (Hard)" )
PORT_DIPSETTING( 0x04, "7" )
PORT_DIPSETTING( 0x08, "6" )
PORT_DIPSETTING( 0x0c, "5" )
PORT_DIPSETTING( 0x10, "4" )
PORT_DIPSETTING( 0x14, "3" )
PORT_DIPSETTING( 0x18, "2" )
PORT_DIPSETTING( 0x1c, "1" )
PORT_DIPSETTING( 0x1c, "1 (Easy)" )
PORT_DIPNAME( 0x20, 0x00, DEF_STR(Demo_Sounds) ) PORT_DIPLOCATION("SW:6")
PORT_DIPSETTING( 0x00, DEF_STR(On) )
PORT_DIPSETTING( 0x20, DEF_STR(Off) )