logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git
commit: fc9d848a775b7d0b9f74e3df6a247d03a3189100
parent b3bb19a96dd2198ad48e3d9f855d76bfa0e00022
Author: Nebuleon <2391500+Nebuleon@users.noreply.github.com>
Date:   Sat, 24 Aug 2024 09:10:48 -0400

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


Diffstat:

Mkeyboards/zsa/moonlander/moonlander.c4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 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) { 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) { @@ -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