mirror of
https://github.com/holub/mame
synced 2025-04-19 23:12:11 +03:00
amstrad: fixed analogue input type (improves pointer control in FutureOS)
This commit is contained in:
parent
8efbaebc74
commit
1d80371056
@ -563,25 +563,25 @@ static INPUT_PORTS_START( plus )
|
||||
The connectors' description for both CPCs and CPC+'s can be found at http://www.hardwarebook.info/Category:Computer */
|
||||
|
||||
PORT_START("analog.0")
|
||||
PORT_BIT(0x3f , 0, IPT_TRACKBALL_X)
|
||||
PORT_BIT(0x3f , 0, IPT_AD_STICK_X)
|
||||
PORT_SENSITIVITY(100)
|
||||
PORT_KEYDELTA(10)
|
||||
PORT_PLAYER(1)
|
||||
|
||||
PORT_START("analog.1")
|
||||
PORT_BIT(0x3f , 0, IPT_TRACKBALL_Y)
|
||||
PORT_BIT(0x3f , 0, IPT_AD_STICK_Y)
|
||||
PORT_SENSITIVITY(100)
|
||||
PORT_KEYDELTA(10)
|
||||
PORT_PLAYER(1)
|
||||
|
||||
PORT_START("analog.2")
|
||||
PORT_BIT(0x3f , 0, IPT_TRACKBALL_X)
|
||||
PORT_BIT(0x3f , 0, IPT_AD_STICK_X)
|
||||
PORT_SENSITIVITY(100)
|
||||
PORT_KEYDELTA(10)
|
||||
PORT_PLAYER(2)
|
||||
|
||||
PORT_START("analog.3")
|
||||
PORT_BIT(0x3f , 0, IPT_TRACKBALL_Y)
|
||||
PORT_BIT(0x3f , 0, IPT_AD_STICK_Y)
|
||||
PORT_SENSITIVITY(100)
|
||||
PORT_KEYDELTA(10)
|
||||
PORT_PLAYER(2)
|
||||
|
Loading…
Reference in New Issue
Block a user