Fixed inverted vertical axis on Amstrad mouse.

This commit is contained in:
TomW 2014-04-28 21:01:38 +01:00
commit b22dc91f67

View file

@ -56,7 +56,7 @@ static int oldb = 0;
void amstrad_mouse_poll(int x, int y, int b)
{
mousex += x;
mousey += y;
mousey -= y;
if ((b & 1) && !(oldb & 1))
keyboard_send(0x7e);