From: Fabrice Desclaux Date: Mon, 20 Feb 2012 18:54:26 +0000 (+0100) Subject: joystick: axis & button are 16 bit X-Git-Url: http://git.droids-corp.org/?p=protos%2Fxbee.git;a=commitdiff_plain;h=81d77338ee91c21ceedfc79461b2d051dd2696e9 joystick: axis & button are 16 bit --- diff --git a/joystick.h b/joystick.h index 91b8957..7363182 100644 --- a/joystick.h +++ b/joystick.h @@ -36,8 +36,8 @@ struct joystick_info { int version; unsigned char nb_axis; unsigned char nb_buttons; - char buttons[JOYSTICK_BUTTON_MAX]; - char axis[JOYSTICK_AXIS_MAX]; + int16_t buttons[JOYSTICK_BUTTON_MAX]; + int16_t axis[JOYSTICK_AXIS_MAX]; char name[JOYSTICK_NAME_LENGTH]; uint16_t btnmap[KEY_MAX - BTN_MISC + 1]; uint8_t axmap[ABS_MAX + 1];