Explorar o código

Fix typo in BACKLIGHT_ENABLE

Fred Sundvik %!s(int64=8) %!d(string=hai) anos
pai
achega
19f0285a76
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      keyboards/ergodox/infinity/animations.c

+ 2 - 2
keyboards/ergodox/infinity/animations.c

@@ -65,7 +65,7 @@ static bool keyframe_fade_in(keyframe_animation_t* animation, visualizer_state_t
 #ifdef LCD_BACKLIGHT_ENABLE
     ret |= backlight_keyframe_animate_color(animation, state);
 #endif
-#ifdef BACLIGHT_ENABLE
+#ifdef BACKLIGHT_ENABLE
     ret |= led_keyframe_fade_in_all(animation, state);
 #endif
     return ret;
@@ -76,7 +76,7 @@ static bool keyframe_fade_out(keyframe_animation_t* animation, visualizer_state_
 #ifdef LCD_BACKLIGHT_ENABLE
     ret |= backlight_keyframe_animate_color(animation, state);
 #endif
-#ifdef BACLIGHT_ENABLE
+#ifdef BACKLIGHT_ENABLE
     ret |= led_keyframe_fade_out_all(animation, state);
 #endif
     return ret;