Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix build failure on zsa/moonlander with DYNAMIC_MACRO_ENABLE #24316

Merged
merged 1 commit into from
Aug 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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