1
0

Fix fn not working with keymap-in-eeprom issue

This commit is contained in:
Kai Ryu 2014-10-02 13:26:09 +09:00
parent 128f106bb1
commit f3134986cf

View File

@ -66,7 +66,7 @@ action_t keymap_fn_to_action(uint8_t keycode)
}; };
#else #else
return (action_t) { return (action_t) {
.code = pgm_read_word(&fn_actions[FN_INDEX(keycode)]) .code = eeconfig_read_keymap_fn_action(FN_INDEX(keycode))
}; };
#endif #endif
} }