diff options
author | tmk <tmk@users.noreply.github.com> | 2014-07-07 12:01:01 +0900 |
---|---|---|
committer | tmk <tmk@users.noreply.github.com> | 2014-07-07 12:01:01 +0900 |
commit | 3eeb0a96232af825962fa1e9b05b80ac1cfd1868 (patch) | |
tree | 9efb1e78f73998755bfe49df9a2f99ffceada33b /common/keymap.h | |
parent | 326e559719505e64b4dd4cc4020c4656252cba64 (diff) | |
parent | e5bafff725f7b9cbfc364e64c74ea7f68bfc9900 (diff) |
Merge pull request #112 from shayneholmes/ee_nkro_use_reserved_bit
Adding NKRO virtual dip-switch, using existing bit in keymap byte.
Diffstat (limited to 'common/keymap.h')
-rw-r--r-- | common/keymap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/keymap.h b/common/keymap.h index bf32acedad..4c3019a364 100644 --- a/common/keymap.h +++ b/common/keymap.h @@ -35,7 +35,7 @@ typedef union { bool no_gui:1; bool swap_grave_esc:1; bool swap_backslash_backspace:1; - bool reserved:1; + bool nkro:1; }; } keymap_config_t; keymap_config_t keymap_config; |