From: Jonas Ådahl Date: Wed, 9 May 2012 06:46:44 +0000 (+0200) Subject: evdev: Convert wl_fixed_t to int before using internally X-Git-Tag: 20120702.1049~214 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c39aa5afcacaf17297b5a168a179c7399521c7a4;p=profile%2Fivi%2Fweston.git evdev: Convert wl_fixed_t to int before using internally Signed-off-by: Jonas Ådahl --- diff --git a/src/evdev.c b/src/evdev.c index c65b82f..5fa7ae6 100644 --- a/src/evdev.c +++ b/src/evdev.c @@ -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;