fix regression: using IPT_START in sms makes mame think joypad 1 is occupied and inserts joypad 2&3 instead of joypad 1&2

This commit is contained in:
hap 2016-08-05 12:56:55 +02:00
parent 3030f52a77
commit 7484fa999c
2 changed files with 2 additions and 2 deletions

View File

@ -627,7 +627,7 @@ static INPUT_PORTS_START( gx4000 )
PORT_START("kbrow.3")
PORT_BIT(0x07, IP_ACTIVE_LOW, IPT_UNUSED)
PORT_BIT(0x08, IP_ACTIVE_LOW, IPT_START ) PORT_NAME(DEF_STR(Pause))
PORT_BIT(0x08, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME(DEF_STR(Pause)) PORT_CODE(KEYCODE_1)
PORT_BIT(0xf0, IP_ACTIVE_LOW, IPT_UNUSED)
PORT_START("kbrow.4")

View File

@ -377,7 +377,7 @@ ADDRESS_MAP_END
static INPUT_PORTS_START( sms )
PORT_START("PAUSE")
PORT_BIT( 0x7f, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_START ) PORT_NAME(DEF_STR(Pause))
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME(DEF_STR(Pause)) PORT_CODE(KEYCODE_1)
INPUT_PORTS_END
static INPUT_PORTS_START( sg1000m3 )