From 1d803710566e37f5200d576bdfcb14b3cc10a537 Mon Sep 17 00:00:00 2001 From: mahlemiut Date: Thu, 25 Jun 2015 18:57:10 +1200 Subject: [PATCH] amstrad: fixed analogue input type (improves pointer control in FutureOS) --- src/mess/drivers/amstrad.c | 8 ++++---- 1 file 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)