diff options
author | Drashna Jael're <drashna@live.com> | 2020-01-30 13:46:57 -0800 |
---|---|---|
committer | Florian Didron <fdidron@users.noreply.github.com> | 2020-02-26 10:15:12 +0900 |
commit | 6198382cb13d1a4208169895fb9449d6021eb204 (patch) | |
tree | 4735a5a6f8a140071e5c0341a478bb4437faf73a /quantum/quantum.c | |
parent | d550603b8c64a3fc9befde3c87a81f0f1cc9d6ab (diff) |
Cleanup magic number and functions
Diffstat (limited to 'quantum/quantum.c')
-rw-r--r-- | quantum/quantum.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c index 9e213d065c..70e343b52d 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c @@ -587,6 +587,9 @@ void matrix_init_quantum() { if (!eeconfig_is_enabled()) { eeconfig_init(); } +#ifdef ORYX_ENABLE + matrix_init_oryx(); +#endif #ifdef BACKLIGHT_ENABLE # ifdef LED_MATRIX_ENABLE led_matrix_init(); |