qmk_firmware

QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)
Log | Files | Refs | Submodules | LICENSE

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.c | 3+--
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)); }