summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--keyboards/zsa/moonlander/moonlander.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/zsa/moonlander/moonlander.c b/keyboards/zsa/moonlander/moonlander.c
index b95966c414..14405fc412 100644
--- a/keyboards/zsa/moonlander/moonlander.c
+++ b/keyboards/zsa/moonlander/moonlander.c
@@ -44,7 +44,7 @@ bool dynamic_macro_record_start_kb(int8_t direction) {
44 ML_LED_3(true); 44 ML_LED_3(true);
45 dynamic_macro_token = defer_exec(100, dynamic_macro_led, NULL); 45 dynamic_macro_token = defer_exec(100, dynamic_macro_led, NULL);
46 } 46 }
47 return true 47 return true;
48} 48}
49 49
50bool dynamic_macro_record_end_kb(int8_t direction) { 50bool dynamic_macro_record_end_kb(int8_t direction) {
@@ -55,7 +55,7 @@ bool dynamic_macro_record_end_kb(int8_t direction) {
55 dynamic_macro_token = INVALID_DEFERRED_TOKEN; 55 dynamic_macro_token = INVALID_DEFERRED_TOKEN;
56 ML_LED_3(false); 56 ML_LED_3(false);
57 } 57 }
58 return false 58 return false;
59} 59}
60# endif 60# endif
61 61