Skip to content

Commit 75f6de9

Browse files
committed
bugfix in Colortwinkles
thx @blazoncek
1 parent 16cfbf7 commit 75f6de9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wled00/FX.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2328,7 +2328,7 @@ uint16_t mode_colortwinkle() {
23282328
}
23292329

23302330
if (cur == prev) { //fix "stuck" pixels
2331-
color_add(col, col);
2331+
col = color_add(col, col);
23322332
SEGMENT.setPixelColor(i, col);
23332333
}
23342334
else SEGMENT.setPixelColor(i, col);

0 commit comments

Comments
 (0)