evdev: Convert wl_fixed_t to int before using internally
authorJonas Ådahl <jadahl@gmail.com>
Wed, 9 May 2012 06:46:44 +0000 (08:46 +0200)
committerJonas Ådahl <jadahl@gmail.com>
Sun, 10 Nov 2013 16:51:28 +0000 (17:51 +0100)
Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
src/evdev.c

index c65b82f..5fa7ae6 100644 (file)
@@ -300,8 +300,8 @@ evdev_flush_motion(struct evdev_input_device *device, uint32_t time)
 
        if (device->type & EVDEV_RELATIVE_MOTION) {
                notify_motion(master, time,
-                             master->x + device->rel.dx,
-                             master->y + device->rel.dy);
+                             wl_fixed_to_int(master->x) + device->rel.dx,
+                             wl_fixed_to_int(master->y) + device->rel.dy);
                device->type &= ~EVDEV_RELATIVE_MOTION;
                device->rel.dx = 0;
                device->rel.dy = 0;