diff options
Diffstat (limited to 'quantum/process_keycode/process_unicodemap.c')
-rw-r--r-- | quantum/process_keycode/process_unicodemap.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/quantum/process_keycode/process_unicodemap.c b/quantum/process_keycode/process_unicodemap.c index ab5717ba3..75f35112b 100644 --- a/quantum/process_keycode/process_unicodemap.c +++ b/quantum/process_keycode/process_unicodemap.c | |||
@@ -45,13 +45,12 @@ __attribute__((weak)) | |||
45 | void unicode_map_input_error() {} | 45 | void unicode_map_input_error() {} |
46 | 46 | ||
47 | bool process_unicode_map(uint16_t keycode, keyrecord_t *record) { | 47 | bool process_unicode_map(uint16_t keycode, keyrecord_t *record) { |
48 | unicode_input_mode_init(); | ||
49 | uint8_t input_mode = get_unicode_input_mode(); | 48 | uint8_t input_mode = get_unicode_input_mode(); |
50 | if ((keycode & QK_UNICODE_MAP) == QK_UNICODE_MAP && record->event.pressed) { | 49 | if ((keycode & QK_UNICODE_MAP) == QK_UNICODE_MAP && record->event.pressed) { |
51 | const uint32_t* map = unicode_map; | 50 | const uint32_t* map = unicode_map; |
52 | uint16_t index = keycode - QK_UNICODE_MAP; | 51 | uint16_t index = keycode - QK_UNICODE_MAP; |
53 | uint32_t code = pgm_read_dword(&map[index]); | 52 | uint32_t code = pgm_read_dword(&map[index]); |
54 | if (code > 0xFFFF && code <= 0x10ffff && (input_mode == UC_OSX || input_mode == UC_OSX_RALT)) { | 53 | if (code > 0xFFFF && code <= 0x10ffff && input_mode == UC_OSX) { |
55 | // Convert to UTF-16 surrogate pair | 54 | // Convert to UTF-16 surrogate pair |
56 | code -= 0x10000; | 55 | code -= 0x10000; |
57 | uint32_t lo = code & 0x3ff; | 56 | uint32_t lo = code & 0x3ff; |
@@ -60,7 +59,7 @@ bool process_unicode_map(uint16_t keycode, keyrecord_t *record) { | |||
60 | register_hex32(hi + 0xd800); | 59 | register_hex32(hi + 0xd800); |
61 | register_hex32(lo + 0xdc00); | 60 | register_hex32(lo + 0xdc00); |
62 | unicode_input_finish(); | 61 | unicode_input_finish(); |
63 | } else if ((code > 0x10ffff && (input_mode == UC_OSX || input_mode == UC_OSX_RALT)) || (code > 0xFFFFF && input_mode == UC_LNX)) { | 62 | } else if ((code > 0x10ffff && input_mode == UC_OSX) || (code > 0xFFFFF && input_mode == UC_LNX)) { |
64 | // when character is out of range supported by the OS | 63 | // when character is out of range supported by the OS |
65 | unicode_map_input_error(); | 64 | unicode_map_input_error(); |
66 | } else { | 65 | } else { |