Skip to content

Commit d856749

Browse files
DedeHaisofthack007
authored andcommitted
fix change that got lost
1 parent f373044 commit d856749

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

wled00/FX.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9744,7 +9744,7 @@ uint16_t mode_particleimpact(void) {
97449744
PartSys->setBounceY(true); // always use ground bounce
97459745
PartSys->setWallRoughness(220); // high roughness
97469746
numMeteors = min(PartSys->numSources, (uint32_t)NUMBEROFSOURCES);
9747-
for (i = 0; i < numMeteors; i++) {
9747+
for (uint32_t i = 0; i < numMeteors; i++) {
97489748
PartSys->sources[i].source.ttl = hw_random16(10 * i); // set initial delay for meteors
97499749
PartSys->sources[i].source.vy = 10; // at positive speeds, no particles are emitted and if particle dies, it will be relaunched
97509750
}

0 commit comments

Comments
 (0)