Browse Source

Merge remote-tracking branch 'origin/master' into develop

pull/21284/head
QMK Bot 11 months ago
parent
commit
7178645be7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      quantum/rgblight/rgblight.c

+ 1
- 1
quantum/rgblight/rgblight.c View File

@ -1277,7 +1277,7 @@ void rgblight_effect_snake(animation_status_t *anim) {
for (j = 0; j < RGBLIGHT_EFFECT_SNAKE_LENGTH; j++) {
k = pos + j * increment;
if (k > RGBLED_NUM) {
k = k % RGBLED_NUM;
k = k % (RGBLED_NUM);
}
if (k < 0) {
k = k + rgblight_ranges.effect_num_leds;


Loading…
Cancel
Save