diff options
author | Drashna Jael're <drashna@live.com> | 2020-02-11 17:56:57 -0800 |
---|---|---|
committer | Florian Didron <fdidron@users.noreply.github.com> | 2020-02-26 10:15:12 +0900 |
commit | 5bf407c8e97c2099baf2f7e15f2947a23f23d4f0 (patch) | |
tree | b8eb723ef803d88add7cc0efe7011d87959512da | |
parent | 39a9486b35d25692ec1d540507e9e1e96a0e1e1d (diff) |
Fix function call
-rw-r--r-- | quantum/oryx.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/quantum/oryx.c b/quantum/oryx.c index ef4efd1924..65a68ee7a2 100644 --- a/quantum/oryx.c +++ b/quantum/oryx.c @@ -231,8 +231,8 @@ void layer_state_set_oryx(layer_state_t state) { } } -#ifdef DYNAMIC_KEYMAP_ENABLE void eeconfig_init_oryx(void) { +#ifdef DYNAMIC_KEYMAP_ENABLE // reread settings from flash into eeprom dynamic_keymap_reset(); dynamic_keymap_macro_reset(); @@ -246,6 +246,5 @@ void matrix_init_oryx(void) { if (!memcmp(&temp, &firmware, sizeof(uint8_t)*FIRMWARE_VERSION_SIZE)) { eeconfig_init_oryx(); } -} - #endif +} |