Skip to content

Commit

Permalink
Make room for 'loose keycodes' by halving UNICODE_MAP range
Browse files Browse the repository at this point in the history
  • Loading branch information
priyadi committed Feb 10, 2017
1 parent 97816df commit b92515f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions quantum/quantum_keycodes.h
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit b92515f

Please sign in to comment.