summaryrefslogtreecommitdiffstats
path: root/common/keymap.h
diff options
context:
space:
mode:
authortmk <tmk@users.noreply.github.com>2014-07-07 05:01:01 +0200
committertmk <tmk@users.noreply.github.com>2014-07-07 05:01:01 +0200
commit3eeb0a96232af825962fa1e9b05b80ac1cfd1868 (patch)
tree9efb1e78f73998755bfe49df9a2f99ffceada33b /common/keymap.h
parent326e559719505e64b4dd4cc4020c4656252cba64 (diff)
parente5bafff725f7b9cbfc364e64c74ea7f68bfc9900 (diff)
downloadqmk_firmware-3eeb0a96232af825962fa1e9b05b80ac1cfd1868.tar.gz
qmk_firmware-3eeb0a96232af825962fa1e9b05b80ac1cfd1868.tar.xz
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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/keymap.h b/common/keymap.h
index bf32aceda..4c3019a36 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;