mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-29 16:25:42 +00:00
Fix #741
Local variable was used incorrectly. Did not result in any bugs, just a small amount of unnecessary network traffic.
This commit is contained in:
parent
4769bba003
commit
11c70262c4
1 changed files with 1 additions and 1 deletions
|
|
@ -606,7 +606,7 @@ void ExplosionData::packData(BitStream* stream)
|
||||||
}
|
}
|
||||||
U32 count;
|
U32 count;
|
||||||
for(count = 0; count < EC_NUM_TIME_KEYS; count++)
|
for(count = 0; count < EC_NUM_TIME_KEYS; count++)
|
||||||
if(times[i] >= 1)
|
if(times[count] >= 1)
|
||||||
break;
|
break;
|
||||||
count++;
|
count++;
|
||||||
if(count > EC_NUM_TIME_KEYS)
|
if(count > EC_NUM_TIME_KEYS)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue