diff options
author | Drashna Jaelre <drashna@live.com> | 2018-10-16 07:30:12 -0700 |
---|---|---|
committer | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2018-10-28 08:44:58 -0700 |
commit | 3d15038dd40721a992606705cdac5c5e381f5bba (patch) | |
tree | 96702c791b66512e798ed16df46790212f6f9dd5 | |
parent | 2abb29402a85675617d07111cbdf5502fd384572 (diff) |
Make RGB init write to eeprom once
-rw-r--r-- | users/drashna/rgb_stuff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/users/drashna/rgb_stuff.c b/users/drashna/rgb_stuff.c index dc6075320e..9ad94c0c3d 100644 --- a/users/drashna/rgb_stuff.c +++ b/users/drashna/rgb_stuff.c @@ -273,7 +273,7 @@ void matrix_init_rgb(void) { default: rgblight_sethsv_noeeprom_cyan(); break; } - rgblight_mode_noeeprom(1); + rgblight_mode(RGBLIGHT_MODE_STATIC_LIGHT); } } |