From 0700dfe7111f0d1f90337520f11f58f72575dbd3 Mon Sep 17 00:00:00 2001 From: Alexander Stillich Date: Sat, 25 Feb 2017 23:30:41 +0100 Subject: [PATCH] Fixed parsing ASE MESH_CFACE --- code/ASEParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/ASEParser.cpp b/code/ASEParser.cpp index 1a3354c6d..b30e3a017 100644 --- a/code/ASEParser.cpp +++ b/code/ASEParser.cpp @@ -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;