Skip to content

Commit

Permalink
Apply length fix to StaticGroundPolylinePerMaterialBatch
Browse files Browse the repository at this point in the history
  • Loading branch information
impactblue573 committed Sep 21, 2018
1 parent 5ef91f3 commit e15975d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/DataSources/StaticGroundPolylinePerMaterialBatch.js
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ define([
}

var isUpdated = true;
for (i = 0; i < length; i++) {
for (i = 0; i < items.length; i++) {
isUpdated = items[i].update(time) && isUpdated;
}
return isUpdated;
Expand Down

0 comments on commit e15975d

Please sign in to comment.