Skip to content

Commit

Permalink
Fix build failure on zsa/moonlander with DYNAMIC_MACRO_ENABLE (qmk#24316
Browse files Browse the repository at this point in the history
)
  • Loading branch information
Nebuleon authored and acidMyke committed Nov 3, 2024
1 parent ac877f4 commit 7bb3bef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions keyboards/zsa/moonlander/moonlander.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ bool dynamic_macro_record_start_kb(int8_t direction) {
ML_LED_3(true);
dynamic_macro_token = defer_exec(100, dynamic_macro_led, NULL);
}
return true
return true;
}

bool dynamic_macro_record_end_kb(int8_t direction) {
Expand All @@ -55,7 +55,7 @@ bool dynamic_macro_record_end_kb(int8_t direction) {
dynamic_macro_token = INVALID_DEFERRED_TOKEN;
ML_LED_3(false);
}
return false
return false;
}
# endif

Expand Down

0 comments on commit 7bb3bef

Please sign in to comment.