We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c00ec3f commit 680bce8Copy full SHA for 680bce8
wled00/FX.cpp
@@ -1877,7 +1877,7 @@ uint16_t mode_oscillate(void) {
1877
uint32_t color = BLACK;
1878
for (unsigned j = 0; j < numOscillators; j++) {
1879
if((int)i >= (int)oscillators[j].pos - oscillators[j].size && i <= oscillators[j].pos + oscillators[j].size) {
1880
- color = (color == BLACK) ? SEGCOLOR(j) : color_blend(color, SEGCOLOR(j), 128);
+ color = (color == BLACK) ? SEGCOLOR(j) : color_blend(color, SEGCOLOR(j), uint8_t(128));
1881
}
1882
1883
SEGMENT.setPixelColor(i, color);
0 commit comments