Fix warning

This commit is contained in:
Daniel Chappuis 2016-04-12 21:32:35 +02:00
parent 34b330eb4f
commit 1ae9bb5467

View File

@ -131,7 +131,7 @@ void ConcaveMeshShape::getTriangleVerticesWithIndexPointer(int32 subPart, int32
for (int k=0; k < 3; k++) {
// Get the index of the current vertex in the triangle
int vertexIndex;
int vertexIndex = 0;
if (indexType == TriangleVertexArray::INDEX_INTEGER_TYPE) {
vertexIndex = ((uint*)vertexIndexPointer)[k];
}
@ -155,6 +155,9 @@ void ConcaveMeshShape::getTriangleVerticesWithIndexPointer(int32 subPart, int32
outTriangleVertices[k][1] = decimal(vertices[1]) * mScaling.y;
outTriangleVertices[k][2] = decimal(vertices[2]) * mScaling.z;
}
else {
assert(false);
}
}
}