diff options
author | tmk <nobody@nowhere> | 2014-04-25 15:32:21 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2014-04-27 04:16:49 +0900 |
commit | 5e3f2d2b2e5065a04495f2c55fae0849966b5d23 (patch) | |
tree | 4e224b2a2d6a6445ae489ab0b1c150cc3c4a83e4 /common/host.c | |
parent | 62117e7ea77bf036e4e08bb02d682311e3c3d401 (diff) | |
download | qmk_firmware-5e3f2d2b2e5065a04495f2c55fae0849966b5d23.tar.gz |
Make NKRO deafult when it is available
- NKRO is used only when keyboard_protocol = 1(report)
Diffstat (limited to 'common/host.c')
-rw-r--r-- | common/host.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/host.c b/common/host.c index 1eafef75c..2e56971bd 100644 --- a/common/host.c +++ b/common/host.c @@ -24,7 +24,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #ifdef NKRO_ENABLE -bool keyboard_nkro = false; +bool keyboard_nkro = true; #endif static host_driver_t *driver; |