Explorar el Código

Update SplitLargeMeshes.cpp

Fix double-parthesis.
Kim Kulling hace 7 años
padre
commit
ed43c48e93
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      code/SplitLargeMeshes.cpp

+ 1 - 1
code/SplitLargeMeshes.cpp

@@ -356,7 +356,7 @@ void SplitLargeMeshesProcess_Vertex::Execute( aiScene* pScene) {
     //Check for point cloud first, 
     //Do not process point cloud, splitMesh works only with faces data
     for (unsigned int a = 0; a < pScene->mNumMeshes; a++) {
-        if ((pScene->mMeshes[a]->mPrimitiveTypes == aiPrimitiveType_POINT)) {
+        if ( pScene->mMeshes[a]->mPrimitiveTypes == aiPrimitiveType_POINT ) {
             return;
         }
     }