Skip to content

Commit

Permalink
Fix preprocessor condition for SPLIT_HAPTIC_ENABLE (qmk#20411)
Browse files Browse the repository at this point in the history
  • Loading branch information
grota authored and coquizen committed Jun 22, 2023
1 parent 4cf1f03 commit bb5e101
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quantum/split_common/transport.h
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ typedef struct _split_shared_memory_t {
bool watchdog_pinged;
#endif // defined(SPLIT_WATCHDOG_ENABLE)

#if defined(HAPTIC_ENABLE)
#if defined(HAPTIC_ENABLE) && defined(SPLIT_HAPTIC_ENABLE)
split_slave_haptic_sync_t haptic_sync;
#endif // defined(HAPTIC_ENABLE)

Expand Down

0 comments on commit bb5e101

Please sign in to comment.