(MESS) a2600.c: Prevent the core from thinking the select/start button on the base unit is for player 1. (nw)

This commit is contained in:
Wilbert Pol 2012-10-23 19:58:14 +00:00
parent f45f1a7e77
commit 5f99ad58c3

View File

@ -1908,7 +1908,7 @@ void a2600_state::machine_reset()
static INPUT_PORTS_START( a2600 )
PORT_START("SWB") /* SWCHB */
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("Reset Game") PORT_CODE(KEYCODE_2)
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_START ) PORT_NAME("Select Game")
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("Select Game") PORT_CODE(KEYCODE_1)
PORT_BIT ( 0x04, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_DIPNAME( 0x08, 0x08, "TV Type" ) PORT_CODE(KEYCODE_C) PORT_TOGGLE
PORT_DIPSETTING( 0x08, "Color" )