Fixed building under Linux

Linux GUI brought up to date
This commit is contained in:
SarahW 2017-01-10 16:38:52 +00:00
commit fb3d3d594b
7 changed files with 267 additions and 108 deletions

View file

@ -18,14 +18,15 @@ void mouse_poll_host()
mouse_buttons = mouse_b;
}
void mouse_get_mickeys(int *x, int *y)
void mouse_get_mickeys(int *x, int *y, int *z)
{
if (mousecapture)
{
get_mouse_mickeys(x, y);
*z = 0;
// position_mouse(64, 64);
}
else
*x = *y = 0;
*x = *y = *z = 0;
}