Indentation fix.

This commit is contained in:
Tamito Kajiyama
2014-05-09 11:40:10 +09:00
parent 1064b74196
commit 11d98718bc

View File

@@ -424,11 +424,12 @@ void BKE_mesh_unlink(Mesh *me)
int a;
if (me == NULL) return;
if (me->mat)
for (a = 0; a < me->totcol; a++) {
if (me->mat[a]) me->mat[a]->id.us--;
me->mat[a] = NULL;
if (me->mat) {
for (a = 0; a < me->totcol; a++) {
if (me->mat[a]) me->mat[a]->id.us--;
me->mat[a] = NULL;
}
}
if (me->key) {