diff options
| author | Dasky <32983009+daskygit@users.noreply.github.com> | 2025-05-27 14:22:55 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-27 14:22:55 +0100 |
| commit | 41b1bb4aef8b550ba67c5a546be970820e072f8f (patch) | |
| tree | 918e5a9150412a6314a510fe3d55babbbfeab643 /quantum | |
| parent | 75a037d2f0f9c54bad8e2f68ae82134559c92f22 (diff) | |
Fix dynamic keymap macro only sending first. (#25309)
Diffstat (limited to 'quantum')
| -rw-r--r-- | quantum/dynamic_keymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/dynamic_keymap.c b/quantum/dynamic_keymap.c index 59027fb694..25029e39c4 100644 --- a/quantum/dynamic_keymap.c +++ b/quantum/dynamic_keymap.c | |||
| @@ -166,6 +166,6 @@ void dynamic_keymap_macro_send(uint8_t id) { | |||
| 166 | ++offset; | 166 | ++offset; |
| 167 | } | 167 | } |
| 168 | 168 | ||
| 169 | send_string_nvm_state_t state = {.offset = 0}; | 169 | send_string_nvm_state_t state = {.offset = offset}; |
| 170 | send_string_with_delay_impl(send_string_get_next_nvm, &state, DYNAMIC_KEYMAP_MACRO_DELAY); | 170 | send_string_with_delay_impl(send_string_get_next_nvm, &state, DYNAMIC_KEYMAP_MACRO_DELAY); |
| 171 | } | 171 | } |
