Merge pull request #1186 from astillich/ase_cface

Fixed parsing ASE MESH_CFACE
pull/1193/head
Kim Kulling 2017-03-01 00:12:12 +01:00 committed by GitHub
commit 574c192575
1 changed files with 1 additions and 1 deletions

View File

@ -1858,7 +1858,7 @@ void Parser::ParseLV3MeshCFaceListBlock(unsigned int iNumFaces, ASE::Mesh& mesh)
++filePtr;
// Face entry
if (TokenMatch(filePtr,"MESH_CFACE" ,11))
if (TokenMatch(filePtr,"MESH_CFACE" ,10))
{
unsigned int aiValues[3];
unsigned int iIndex = 0;