unnecessarily duplicated var definitions

This commit is contained in:
Azaezel 2018-03-16 17:12:22 -05:00
parent 36c3a4d371
commit c3698c1db6
3 changed files with 19 additions and 19 deletions

View file

@ -237,7 +237,7 @@ void EarlyOutPolyList::end()
iv.mask = 0;
// Test against the remaining planes
for (U32 i = p + 1; i < mPlaneList.size(); i++)
for (i = p + 1; i < mPlaneList.size(); i++)
if (mPlaneList[i].distToPlane(iv.point) > 0) {
iv.mask = 1 << i;
break;