diff options
author | Joel Challis <git@zvecr.com> | 2019-12-11 19:39:30 +0000 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-12-11 11:39:30 -0800 |
commit | efb21c00ce8090303456dc9c22665a69c3fc298a (patch) | |
tree | d32a47f1209dcae87b9d4571b46e3ff80397b9eb /tmk_core | |
parent | 071eb2478f039e21effb981a8a98e6181238b53b (diff) | |
download | qmk_firmware-efb21c00ce8090303456dc9c22665a69c3fc298a.tar.gz qmk_firmware-efb21c00ce8090303456dc9c22665a69c3fc298a.zip |
Fix FORCE_NKRO handling (#7601)
Diffstat (limited to 'tmk_core')
-rw-r--r-- | tmk_core/common/keyboard.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tmk_core/common/keyboard.c b/tmk_core/common/keyboard.c index 63ace9793c..125f00ccf7 100644 --- a/tmk_core/common/keyboard.c +++ b/tmk_core/common/keyboard.c @@ -254,6 +254,7 @@ void keyboard_init(void) { #endif #if defined(NKRO_ENABLE) && defined(FORCE_NKRO) keymap_config.nkro = 1; + eeconfig_update_keymap(keymap_config.raw); #endif keyboard_post_init_kb(); /* Always keep this last */ } |