Fix joystick build for ChibiOS (#19602)

`joystick_report_t` was renamed to `report_joystick_t`, but apparently
one place in the code was missed.
This commit is contained in:
Sergey Vlasov 2023-01-16 02:29:29 +03:00 committed by GitHub
parent 0730740add
commit 955829bfd0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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};