mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
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:
parent
3030f52a77
commit
7484fa999c
@ -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")
|
||||
|
@ -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 )
|
||||
|
Loading…
Reference in New Issue
Block a user