summaryrefslogtreecommitdiff
path: root/tmk_core/protocol
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2024-01-23 00:18:20 +1100
committerGitHub <noreply@github.com>2024-01-22 13:18:20 +0000
commit3495cbc6382d4fa08ee5b4294527ab66fb7dff59 (patch)
tree99a9029850655b675d2b7041767375e81e5648ca /tmk_core/protocol
parentcdbfcb6c148fe1f4b929f148149d3c9d572dff67 (diff)
Fix missing joystick.h include (#22946)
Diffstat (limited to 'tmk_core/protocol')
-rw-r--r--tmk_core/protocol/report.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/tmk_core/protocol/report.h b/tmk_core/protocol/report.h
index 3028cf9426..47bc4f2f2b 100644
--- a/tmk_core/protocol/report.h
+++ b/tmk_core/protocol/report.h
@@ -22,6 +22,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
22#include "keycode.h" 22#include "keycode.h"
23#include "util.h" 23#include "util.h"
24 24
25#ifdef JOYSTICK_ENABLE
26# include "joystick.h"
27#endif
28
25// clang-format off 29// clang-format off
26 30
27/* HID report IDs */ 31/* HID report IDs */