From 11d7139989860a1405124b889db2fbad087a5a09 Mon Sep 17 00:00:00 2001 From: Daniel Stone Date: Wed, 30 May 2012 16:31:50 +0100 Subject: [PATCH] test-client.c: Replace hard-coded magic value Took me a second to work out that the 272 was actually BTN_LEFT, as keys and buttons share a namespace in evdev. Signed-off-by: Daniel Stone --- tests/test-client.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test-client.c b/tests/test-client.c index c6dfd96..fc65ee6 100644 --- a/tests/test-client.c +++ b/tests/test-client.c @@ -28,6 +28,7 @@ #include #include #include /* needed for GLfloat */ +#include struct display { struct wl_display *display; @@ -96,7 +97,7 @@ pointer_handle_button(void *data, struct wl_pointer *pointer, struct input *input = data; uint32_t bit; - bit = 1 << (button - 272); + bit = 1 << (button - BTN_LEFT); if (state) input->button_mask |= bit; else -- 2.7.4