qmk_firmware

QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)
Log | Files | Refs | Submodules | LICENSE

commit 7178645be79510eb623098bccbf1724ff9970edc
parent 40a073b140c97d2c981d2542ae47dea7275f4044
Author: QMK Bot <hello@qmk.fm>
Date:   Sun, 18 Jun 2023 04:33:50 +0000

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

Diffstat:
Mquantum/rgblight/rgblight.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/quantum/rgblight/rgblight.c b/quantum/rgblight/rgblight.c @@ -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;