Looks like a bit of edit crash fix got missed, thx Drake

This commit is contained in:
Siana Gearz
2012-07-22 23:30:34 +02:00
parent a967f2b037
commit d9cb2ce6c7

View File

@@ -5624,7 +5624,7 @@ void pushWireframe(LLDrawable* drawable)
for (S32 i = 0; i < volume->getNumVolumeFaces(); ++i)
{
const LLVolumeFace& face = volume->getVolumeFace(i);
LLVertexBuffer::drawElements(LLRender::TRIANGLES, face.mPositions, face.mTexCoords, face.mNumIndices, face.mIndices);
LLVertexBuffer::drawElements(LLRender::TRIANGLES, face.mPositions, NULL, face.mNumIndices, face.mIndices);
}
}