Code cleanup: use 'const' for arrays (blenloader, gpu, imbuf, makesdna, modifiers, nodes)

This commit is contained in:
2014-04-27 00:24:11 +10:00
parent 88a0fe5f1b
commit 7ca74fc1c0
25 changed files with 46 additions and 46 deletions

View File

@@ -801,7 +801,7 @@ static DerivedMesh *explodeMesh(ExplodeModifierData *emd,
float rot[4];
float cfra;
/* float timestep; */
int *facepa = emd->facepa;
const int *facepa = emd->facepa;
int totdup = 0, totvert = 0, totface = 0, totpart = 0, delface = 0;
int i, v, u;
unsigned int ed_v1, ed_v2, mindex = 0;