mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-07-17 13:12:08 +00:00
Fix formatting.
This commit is contained in:
parent
3fdbb079cb
commit
99d49aca58
@ -648,7 +648,7 @@ static uint8_t waiting_buffer_find_chordal_hold_tap(void) {
|
|||||||
uint8_t first_tap = WAITING_BUFFER_SIZE;
|
uint8_t first_tap = WAITING_BUFFER_SIZE;
|
||||||
|
|
||||||
for (uint8_t i = waiting_buffer_tail; i != waiting_buffer_head; i = (i + 1) % WAITING_BUFFER_SIZE) {
|
for (uint8_t i = waiting_buffer_tail; i != waiting_buffer_head; i = (i + 1) % WAITING_BUFFER_SIZE) {
|
||||||
keyrecord_t *cur = &waiting_buffer[i];
|
keyrecord_t * cur = &waiting_buffer[i];
|
||||||
const uint16_t cur_keycode = get_record_keycode(cur, false);
|
const uint16_t cur_keycode = get_record_keycode(cur, false);
|
||||||
|
|
||||||
if (!cur->event.pressed || !is_tap_record(prev) || is_one_shot(prev_keycode)) {
|
if (!cur->event.pressed || !is_tap_record(prev) || is_one_shot(prev_keycode)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user