mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 10:39:09 +00:00
Fix typo in BACKLIGHT_ENABLE
This commit is contained in:
parent
b51a0db6ed
commit
19f0285a76
1 changed files with 2 additions and 2 deletions
|
@ -65,7 +65,7 @@ static bool keyframe_fade_in(keyframe_animation_t* animation, visualizer_state_t
|
||||||
#ifdef LCD_BACKLIGHT_ENABLE
|
#ifdef LCD_BACKLIGHT_ENABLE
|
||||||
ret |= backlight_keyframe_animate_color(animation, state);
|
ret |= backlight_keyframe_animate_color(animation, state);
|
||||||
#endif
|
#endif
|
||||||
#ifdef BACLIGHT_ENABLE
|
#ifdef BACKLIGHT_ENABLE
|
||||||
ret |= led_keyframe_fade_in_all(animation, state);
|
ret |= led_keyframe_fade_in_all(animation, state);
|
||||||
#endif
|
#endif
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -76,7 +76,7 @@ static bool keyframe_fade_out(keyframe_animation_t* animation, visualizer_state_
|
||||||
#ifdef LCD_BACKLIGHT_ENABLE
|
#ifdef LCD_BACKLIGHT_ENABLE
|
||||||
ret |= backlight_keyframe_animate_color(animation, state);
|
ret |= backlight_keyframe_animate_color(animation, state);
|
||||||
#endif
|
#endif
|
||||||
#ifdef BACLIGHT_ENABLE
|
#ifdef BACKLIGHT_ENABLE
|
||||||
ret |= led_keyframe_fade_out_all(animation, state);
|
ret |= led_keyframe_fade_out_all(animation, state);
|
||||||
#endif
|
#endif
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in a new issue