diff options
Diffstat (limited to 'src/mess/drivers/amstrad.c')
-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) |