logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git
commit: 8b671b99693698f87a4a27c9964f41addb38f2c7
parent bd11ddc09352de10163d34ba567f52da37a2e91b
Author: QMK Bot <hello@qmk.fm>
Date:   Tue,  9 Jan 2024 10:46:13 +0000

Merge remote-tracking branch 'origin/master' into develop

Diffstat:

Mquantum/process_keycode/process_dynamic_macro.c3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/quantum/process_keycode/process_dynamic_macro.c b/quantum/process_keycode/process_dynamic_macro.c @@ -133,9 +133,8 @@ void dynamic_macro_record_key(keyrecord_t *macro_buffer, keyrecord_t **macro_poi if (*macro_pointer - direction != macro2_end) { **macro_pointer = *record; *macro_pointer += direction; - } else { - dynamic_macro_record_key_user(direction, record); } + dynamic_macro_record_key_user(direction, record); dprintf("dynamic macro: slot %d length: %d/%d\n", DYNAMIC_MACRO_CURRENT_SLOT(), DYNAMIC_MACRO_CURRENT_LENGTH(macro_buffer, *macro_pointer), DYNAMIC_MACRO_CURRENT_CAPACITY(macro_buffer, macro2_end)); }