summaryrefslogtreecommitdiffstats
path: root/quantum/process_keycode/process_unicode.c
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2018-10-19 06:35:15 +0200
committerJack Humbert <jack.humb@gmail.com>2018-10-19 06:35:15 +0200
commit7222e3691b18128c4822f6bb5db008010f5e41dd (patch)
tree9be08574cf226f6a4f5d08cfad5d302013b44f9e /quantum/process_keycode/process_unicode.c
parent7e1b57add42dcc3330d9d99e28c9b7f96eb2eee8 (diff)
downloadqmk_firmware-7222e3691b18128c4822f6bb5db008010f5e41dd.tar.gz
qmk_firmware-7222e3691b18128c4822f6bb5db008010f5e41dd.tar.xz
Fix Unicode EEPROM handling so it is consistent. (#4066)
* Fix Unicode EEPROM handling so it's consistant * Remove changes to my userspace * Optimize variables used * fix functions * additional cleanup * Add False Flag * rename function
Diffstat (limited to 'quantum/process_keycode/process_unicode.c')
-rw-r--r--quantum/process_keycode/process_unicode.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/quantum/process_keycode/process_unicode.c b/quantum/process_keycode/process_unicode.c
index fd008eca1..f39c4a36e 100644
--- a/quantum/process_keycode/process_unicode.c
+++ b/quantum/process_keycode/process_unicode.c
@@ -17,15 +17,10 @@
#include "action_util.h"
#include "eeprom.h"
-static uint8_t first_flag = 0;
-
bool process_unicode(uint16_t keycode, keyrecord_t *record) {
if (keycode > QK_UNICODE && record->event.pressed) {
- if (first_flag == 0) {
- set_unicode_input_mode(eeprom_read_byte(EECONFIG_UNICODEMODE));
- first_flag = 1;
- }
uint16_t unicode = keycode & 0x7FFF;
+ unicode_input_mode_init();
unicode_input_start();
register_hex(unicode);
unicode_input_finish();