texface - quick speedup

I doubt this makes any difference but still, good practises are always good.
This commit is contained in:
Dalai Felinto 2011-09-20 05:45:54 +00:00
parent 79c19590e9
commit 2b1513dbda

@ -1931,12 +1931,13 @@ int do_version_tface(Main *main, int fileload)
if (!cdl) continue;
/* loop over all the faces and stop at the ones that use the material*/
for(a=0, mf=me->mface; a<me->totface; a++, mf++) {
/* texface data for this face */
tf = ((MTFace*)cdl->data) + a;
if(me->mat[(int)mf->mat_nr] != ma) continue;
else tf->mode |= TF_CONVERTED;
for (a=0, mf=me->mface; a<me->totface; a++, mf++) {
if (me->mat[(int)mf->mat_nr] != ma) continue;
else {
/* texface data for this face */
tf = ((MTFace*)cdl->data) + a;
tf->mode |= TF_CONVERTED;
}
}
}
}