amstrad: fixed analogue input type (improves pointer control in FutureOS)

This commit is contained in:
mahlemiut 2015-06-25 18:57:10 +12:00
parent 8efbaebc74
commit 1d80371056

View File

@ -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)