Skip to content

Commit

Permalink
Fix joystick build for ChibiOS (qmk#19602)
Browse files Browse the repository at this point in the history
`joystick_report_t` was renamed to `report_joystick_t`, but apparently
one place in the code was missed.
  • Loading branch information
sigprof committed Jan 15, 2023
1 parent 0730740 commit 955829b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tmk_core/protocol/chibios/usb_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ union {
report_digitizer_t digitizer;
#endif
#ifdef JOYSTICK_ENABLE
joystick_report_t joystick;
report_joystick_t joystick;
#endif
} universal_report_blank = {0};

Expand Down

0 comments on commit 955829b

Please sign in to comment.