aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--quantum/rgblight.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/quantum/rgblight.c b/quantum/rgblight.c
index a094863fe..1c197827f 100644
--- a/quantum/rgblight.c
+++ b/quantum/rgblight.c
@@ -910,6 +910,9 @@ void rgblight_effect_snake(animation_status_t *anim) {
910 ledp->b = 0; 910 ledp->b = 0;
911 for (j = 0; j < RGBLIGHT_EFFECT_SNAKE_LENGTH; j++) { 911 for (j = 0; j < RGBLIGHT_EFFECT_SNAKE_LENGTH; j++) {
912 k = pos + j * increment; 912 k = pos + j * increment;
913 if (k > RGBLED_NUM) {
914 k = k % RGBLED_NUM;
915 }
913 if (k < 0) { 916 if (k < 0) {
914 k = k + effect_num_leds; 917 k = k + effect_num_leds;
915 } 918 }