Fix build failure on zsa/moonlander with DYNAMIC_MACRO_ENABLE (#24316)

This commit is contained in:
Nebuleon 2024-08-24 09:10:48 -04:00 committed by GitHub
parent b3bb19a96d
commit fc9d848a77
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -44,7 +44,7 @@ bool dynamic_macro_record_start_kb(int8_t direction) {
ML_LED_3(true); ML_LED_3(true);
dynamic_macro_token = defer_exec(100, dynamic_macro_led, NULL); dynamic_macro_token = defer_exec(100, dynamic_macro_led, NULL);
} }
return true return true;
} }
bool dynamic_macro_record_end_kb(int8_t direction) { bool dynamic_macro_record_end_kb(int8_t direction) {
@ -55,7 +55,7 @@ bool dynamic_macro_record_end_kb(int8_t direction) {
dynamic_macro_token = INVALID_DEFERRED_TOKEN; dynamic_macro_token = INVALID_DEFERRED_TOKEN;
ML_LED_3(false); ML_LED_3(false);
} }
return false return false;
} }
# endif # endif