Skip to content

Commit ab5b6f9

Browse files
committed
fix change that got lost
1 parent 4fd1b39 commit ab5b6f9

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
@@ -8494,7 +8494,7 @@ uint16_t mode_particleimpact(void) {
84948494
PartSys->setBounceY(true); // always use ground bounce
84958495
PartSys->setWallRoughness(220); // high roughness
84968496
numMeteors = min(PartSys->numSources, (uint32_t)NUMBEROFSOURCES);
8497-
for (i = 0; i < numMeteors; i++) {
8497+
for (uint32_t i = 0; i < numMeteors; i++) {
84988498
PartSys->sources[i].source.ttl = hw_random16(10 * i); // set initial delay for meteors
84998499
PartSys->sources[i].source.vy = 10; // at positive speeds, no particles are emitted and if particle dies, it will be relaunched
85008500
}

0 commit comments

Comments
 (0)