diff options
author | Drashna Jael're <drashna@live.com> | 2020-01-30 13:49:41 -0800 |
---|---|---|
committer | Florian Didron <fdidron@users.noreply.github.com> | 2020-02-26 10:15:12 +0900 |
commit | 39a9486b35d25692ec1d540507e9e1e96a0e1e1d (patch) | |
tree | 49a046ea4b702c98fb682d6d4d1cfaf06e8c67bb /quantum | |
parent | 6198382cb13d1a4208169895fb9449d6021eb204 (diff) |
Cleanup oryx init check
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/quantum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c index 70e343b52d..9870d8fca5 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c @@ -587,7 +587,7 @@ void matrix_init_quantum() { if (!eeconfig_is_enabled()) { eeconfig_init(); } -#ifdef ORYX_ENABLE +#if defined(ORYX_ENABLE) && defined(DYNAMIC_KEYMAP_ENABLE) matrix_init_oryx(); #endif #ifdef BACKLIGHT_ENABLE |