diff options
author | QMK Bot <hello@qmk.fm> | 2020-03-13 18:44:56 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2020-03-13 18:44:56 +0000 |
commit | 5e98eaaaff8fde1ce25b9bad6c00a982718cb467 (patch) | |
tree | 6af5516366a2a35b29ee7710c33eb47c2ead5718 /tmk_core/common/action.c | |
parent | 9e8767917d628afd3dc43759d1d50151c61944a1 (diff) |
format code according to conventions [skip ci]
Diffstat (limited to 'tmk_core/common/action.c')
-rw-r--r-- | tmk_core/common/action.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tmk_core/common/action.c b/tmk_core/common/action.c index 2deafd465f..555a71ebc6 100644 --- a/tmk_core/common/action.c +++ b/tmk_core/common/action.c @@ -758,8 +758,8 @@ void register_code(uint8_t code) { // without this, keys with the same keycode, but different // modifiers will be reported incorrectly, see issue #1708 if (is_key_pressed(keyboard_report, code)) { - del_key(code); - send_keyboard_report(); + del_key(code); + send_keyboard_report(); } add_key(code); send_keyboard_report(); |