Merge with 2.5 -r 21756:22173.

This commit is contained in:
2009-08-03 14:06:47 +00:00
537 changed files with 44638 additions and 19909 deletions

View File

@@ -130,7 +130,7 @@ static void rna_Mesh_transform(Mesh *me, float *mat)
MVert *mvert= me->mvert;
for(i= 0; i < me->totvert; i++, mvert++) {
Mat4MulVecfl(mat, mvert->co);
Mat4MulVecfl((float (*)[4])mat, mvert->co);
}
}