diff options
| author | skullY <skullydazed@gmail.com> | 2019-08-30 11:19:03 -0700 |
|---|---|---|
| committer | skullydazed <skullydazed@users.noreply.github.com> | 2019-08-30 15:01:52 -0700 |
| commit | b624f32f944acdc59dcb130674c09090c5c404cb (patch) | |
| tree | bc13adbba137d122d9a2c2fb2fafcbb08ac10e25 /quantum/process_keycode/process_unicode.c | |
| parent | 61af76a10d00aba185b8338604171de490a13e3b (diff) | |
clang-format changes
Diffstat (limited to 'quantum/process_keycode/process_unicode.c')
| -rw-r--r-- | quantum/process_keycode/process_unicode.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/quantum/process_keycode/process_unicode.c b/quantum/process_keycode/process_unicode.c index 2c914013ac..18a1d8bc1f 100644 --- a/quantum/process_keycode/process_unicode.c +++ b/quantum/process_keycode/process_unicode.c | |||
| @@ -19,10 +19,10 @@ | |||
| 19 | #include "eeprom.h" | 19 | #include "eeprom.h" |
| 20 | 20 | ||
| 21 | bool process_unicode(uint16_t keycode, keyrecord_t *record) { | 21 | bool process_unicode(uint16_t keycode, keyrecord_t *record) { |
| 22 | if (keycode >= QK_UNICODE && keycode <= QK_UNICODE_MAX && record->event.pressed) { | 22 | if (keycode >= QK_UNICODE && keycode <= QK_UNICODE_MAX && record->event.pressed) { |
| 23 | unicode_input_start(); | 23 | unicode_input_start(); |
| 24 | register_hex(keycode & 0x7FFF); | 24 | register_hex(keycode & 0x7FFF); |
| 25 | unicode_input_finish(); | 25 | unicode_input_finish(); |
| 26 | } | 26 | } |
| 27 | return true; | 27 | return true; |
| 28 | } | 28 | } |
