浏览代码

Update SplitLargeMeshes.cpp

Fix double-parthesis.
Kim Kulling 7 年之前
父节点
当前提交
ed43c48e93
共有 1 个文件被更改,包括 1 次插入1 次删除
  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;
         }
     }