~ruther/qmk_firmware

53472a4e7b7373f1a733e7264d023c4b1b6a9893 — QMK Bot 3 years ago e24fe08 + c4b0350
Merge remote-tracking branch 'origin/master' into develop
1 files changed, 1 insertions(+), 1 deletions(-)

M quantum/joystick.h
M quantum/joystick.h => quantum/joystick.h +1 -1
@@ 50,7 50,7 @@ extern joystick_config_t joystick_axes[JOYSTICK_AXES_COUNT];
enum joystick_status { JS_INITIALIZED = 1, JS_UPDATED = 2 };

typedef struct {
    uint8_t buttons[JOYSTICK_BUTTON_COUNT / 8 + 1];
    uint8_t buttons[(JOYSTICK_BUTTON_COUNT - 1) / 8 + 1];

    int16_t axes[JOYSTICK_AXES_COUNT];
    uint8_t status : 2;