Make room for 'loose keycodes' by halving UNICODE_MAP range

master
Priyadi Iman Nurcahyo 2017-02-11 00:36:08 +07:00
parent 97816df7e7
commit b92515f139
1 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ enum quantum_keycodes {
QK_TAP_DANCE_MAX = 0x57FF,
#ifdef UNICODEMAP_ENABLE
QK_UNICODE_MAP = 0x5800,
QK_UNICODE_MAP_MAX = 0x5FFF,
QK_UNICODE_MAP_MAX = 0x5BFF,
#endif
QK_MOD_TAP = 0x6000,
QK_MOD_TAP_MAX = 0x7FFF,
@ -54,7 +54,7 @@ enum quantum_keycodes {
// Loose keycodes - to be used directly
RESET = 0x7000,
RESET = 0x5C00,
DEBUG,
MAGIC_SWAP_CONTROL_CAPSLOCK,
MAGIC_CAPSLOCK_TO_CONTROL,