Browse Source

Fix joystick build for ChibiOS (#19602)

`joystick_report_t` was renamed to `report_joystick_t`, but apparently
one place in the code was missed.
pull/19606/head
Sergey Vlasov 1 year ago
committed by GitHub
parent
commit
955829bfd0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tmk_core/protocol/chibios/usb_main.c

+ 1
- 1
tmk_core/protocol/chibios/usb_main.c 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};


Loading…
Cancel
Save