We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62943ec commit f1cb1eeCopy full SHA for f1cb1ee
wled00/FX.cpp
@@ -7887,7 +7887,7 @@ uint16_t mode_particlefireworks(void) {
7887
counter = 0;
7888
speed += 3 + ((SEGMENT.intensity >> 6)); // increase speed to form a second wave
7889
PartSys->sources[j].source.hue += hueincrement; // new color for next circle
7890
- PartSys->sources[j].source.sat = min((uint16_t)150, hw_random16());
+ PartSys->sources[j].source.sat = 100 + hw_random16(156);
7891
PartSys->sources[j].source.sat = 100 + hw_random16(156);
7892
}
7893
angle += angleincrement; // set angle for next particle
0 commit comments