Skip to content

Commit

Permalink
Address issue #1713 (#1728)
Browse files Browse the repository at this point in the history
  • Loading branch information
khord authored and skullydazed committed Sep 17, 2017
1 parent 2a02df8 commit da887ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quantum/rgblight.c
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ void rgblight_effect_rainbow_swirl(uint8_t interval) {
static uint16_t last_timer = 0;
uint16_t hue;
uint8_t i;
if (timer_elapsed(last_timer) < pgm_read_byte(&RGBLED_RAINBOW_MOOD_INTERVALS[interval / 2])) {
if (timer_elapsed(last_timer) < pgm_read_byte(&RGBLED_RAINBOW_SWIRL_INTERVALS[interval / 2])) {
return;
}
last_timer = timer_read();
Expand Down

0 comments on commit da887ea

Please sign in to comment.