diff options
author | David Eklov <[email protected]> | 2016-07-11 00:03:15 -0500 |
---|---|---|
committer | David Eklov <[email protected]> | 2016-07-14 17:18:01 -0500 |
commit | 679c7b397c4e9dfdc69d6c67c523494dfe987f60 (patch) | |
tree | 54d2d114b4a25a10f4d11a64303cd9e949bed032 /wayland/window.c | |
parent | c805e42635f3935ccf0ce927143433b94c78a3e7 (diff) |
Use int instead of wl_fixed_t for mouse coordinates
Diffstat (limited to 'wayland/window.c')
-rw-r--r-- | wayland/window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wayland/window.c b/wayland/window.c index e055e244..9b6e5b00 100644 --- a/wayland/window.c +++ b/wayland/window.c @@ -32,8 +32,8 @@ static void pointer_handle_motion(void *data, struct wl_pointer *pointer, uint32_t time, wl_fixed_t sx_w, wl_fixed_t sy_w) { struct window *window = data; - window->pointer_input.last_x = sx_w; - window->pointer_input.last_y = sy_w; + window->pointer_input.last_x = wl_fixed_to_int(sx_w); + window->pointer_input.last_y = wl_fixed_to_int(sy_w); } static void pointer_handle_button(void *data, struct wl_pointer *pointer, uint32_t serial, |