summaryrefslogtreecommitdiff
path: root/tmk_core
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2019-12-11 19:39:30 +0000
committerDrashna Jaelre <drashna@live.com>2019-12-11 11:39:30 -0800
commitefb21c00ce8090303456dc9c22665a69c3fc298a (patch)
treed32a47f1209dcae87b9d4571b46e3ff80397b9eb /tmk_core
parent071eb2478f039e21effb981a8a98e6181238b53b (diff)
Fix FORCE_NKRO handling (#7601)
Diffstat (limited to 'tmk_core')
-rw-r--r--tmk_core/common/keyboard.c1
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 */
}