]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - quantum/process_keycode/process_unicode.c
Fix Bootmgic Mod Handling for LM keycodes (#4740)
[qmk_firmware.git] / quantum / process_keycode / process_unicode.c
index 1f16b9bdb2e4ada362b1c409579dfa3b839cb80f..19beb84520b9c150cbb1f593c4bea1d5b2255aaf 100644 (file)
  */
 #include "process_unicode.h"
 #include "action_util.h"
-
+#include "eeprom.h"
 
 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_start();
     register_hex(unicode);
@@ -30,4 +26,3 @@ bool process_unicode(uint16_t keycode, keyrecord_t *record) {
   }
   return true;
 }
-