diff options
author | 2015-06-25 18:57:10 +1200 | |
---|---|---|
committer | 2015-06-25 18:59:40 +1200 | |
commit | 1d803710566e37f5200d576bdfcb14b3cc10a537 (patch) | |
tree | 302c3a2b84bf2933153bb9d1aec8425538c2f805 | |
parent | 8efbaebc7404debf031f96c04356082db985a184 (diff) |
amstrad: fixed analogue input type (improves pointer control in FutureOS)
-rw-r--r-- | src/mess/drivers/amstrad.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mess/drivers/amstrad.c b/src/mess/drivers/amstrad.c index 6919e0c2867..03c1d5026c3 100644 --- a/src/mess/drivers/amstrad.c +++ b/src/mess/drivers/amstrad.c @@ -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) |