Эх сурвалжийг харах

fix issue with rgbinit unused variable (#3165)

* fix issue with rgbinit wiping out customization.

* removed unused variable
Jon Allen 7 жил өмнө
parent
commit
974d155505

+ 0 - 2
quantum/rgblight.c

@@ -48,7 +48,6 @@ const uint16_t RGBLED_RGBTEST_INTERVALS[] PROGMEM = {1024};
 rgblight_config_t rgblight_config;
 rgblight_config_t rgblight_config;
 
 
 LED_TYPE led[RGBLED_NUM];
 LED_TYPE led[RGBLED_NUM];
-uint8_t rgblight_inited = 0;
 bool rgblight_timer_enabled = false;
 bool rgblight_timer_enabled = false;
 
 
 void sethsv(uint16_t hue, uint8_t sat, uint8_t val, LED_TYPE *led1) {
 void sethsv(uint16_t hue, uint8_t sat, uint8_t val, LED_TYPE *led1) {
@@ -142,7 +141,6 @@ void eeconfig_debug_rgblight(void) {
 void rgblight_init(void) {
 void rgblight_init(void) {
   debug_enable = 1; // Debug ON!
   debug_enable = 1; // Debug ON!
   dprintf("rgblight_init called.\n");
   dprintf("rgblight_init called.\n");
-  rgblight_inited = 1;
   dprintf("rgblight_init start!\n");
   dprintf("rgblight_init start!\n");
   if (!eeconfig_is_enabled()) {
   if (!eeconfig_is_enabled()) {
     dprintf("rgblight_init eeconfig is not enabled.\n");
     dprintf("rgblight_init eeconfig is not enabled.\n");