Pārlūkot izejas kodu

Merge pull request #1186 from astillich/ase_cface

Fixed parsing ASE MESH_CFACE
Kim Kulling 8 gadi atpakaļ
vecāks
revīzija
574c192575
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      code/ASEParser.cpp

+ 1 - 1
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;