mirror of
https://github.com/holub/mame
synced 2025-05-28 16:43:04 +03:00
Merge pull request #1068 from rzero9/patch-1
pc9801: fixed mouse buttons
This commit is contained in:
commit
d67f2e54ff
@ -2576,8 +2576,8 @@ static INPUT_PORTS_START( pc9801 )
|
||||
PORT_START("MOUSE_B")
|
||||
PORT_BIT(0x0f, IP_ACTIVE_LOW, IPT_UNUSED )
|
||||
PORT_BIT(0x10, IP_ACTIVE_LOW, IPT_UNUSED )
|
||||
PORT_BIT(0x20, IP_ACTIVE_LOW, IPT_BUTTON3) PORT_CODE(MOUSECODE_BUTTON3) PORT_NAME("Mouse Middle Button")
|
||||
PORT_BIT(0x40, IP_ACTIVE_LOW, IPT_BUTTON2) PORT_CODE(MOUSECODE_BUTTON2) PORT_NAME("Mouse Right Button")
|
||||
PORT_BIT(0x20, IP_ACTIVE_LOW, IPT_BUTTON2) PORT_CODE(MOUSECODE_BUTTON2) PORT_NAME("Mouse Right Button")
|
||||
PORT_BIT(0x40, IP_ACTIVE_LOW, IPT_BUTTON3) PORT_CODE(MOUSECODE_BUTTON3) PORT_NAME("Mouse Middle Button")
|
||||
PORT_BIT(0x80, IP_ACTIVE_LOW, IPT_BUTTON1) PORT_CODE(MOUSECODE_BUTTON1) PORT_NAME("Mouse Left Button")
|
||||
|
||||
PORT_START("ROM_LOAD")
|
||||
|
Loading…
Reference in New Issue
Block a user