summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--quantum/rgblight/rgblight.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/rgblight/rgblight.c b/quantum/rgblight/rgblight.c
index ea28801a40..158112f31d 100644
--- a/quantum/rgblight/rgblight.c
+++ b/quantum/rgblight/rgblight.c
@@ -1277,7 +1277,7 @@ void rgblight_effect_snake(animation_status_t *anim) {
1277 for (j = 0; j < RGBLIGHT_EFFECT_SNAKE_LENGTH; j++) { 1277 for (j = 0; j < RGBLIGHT_EFFECT_SNAKE_LENGTH; j++) {
1278 k = pos + j * increment; 1278 k = pos + j * increment;
1279 if (k > RGBLED_NUM) { 1279 if (k > RGBLED_NUM) {
1280 k = k % RGBLED_NUM; 1280 k = k % (RGBLED_NUM);
1281 } 1281 }
1282 if (k < 0) { 1282 if (k < 0) {
1283 k = k + rgblight_ranges.effect_num_leds; 1283 k = k + rgblight_ranges.effect_num_leds;