[client] spice: update submodule and refactor calls & types

This commit is contained in:
Geoffrey McRae
2021-12-28 22:03:48 +11:00
parent e7fdf7e77a
commit 65ba2e8df9
8 changed files with 48 additions and 48 deletions

View File

@@ -411,7 +411,7 @@ void core_handleMouseGrabbed(double ex, double ey)
if (x == 0 && y == 0)
return;
if (!spice_mouse_motion(x, y))
if (!purespice_mouseMotion(x, y))
DEBUG_ERROR("failed to send mouse motion message");
}
@@ -612,7 +612,7 @@ void core_handleMouseNormal(double ex, double ey)
g_cursor.guest.y += y;
}
if (!spice_mouse_motion(x, y))
if (!purespice_mouseMotion(x, y))
DEBUG_ERROR("failed to send mouse motion message");
}