From ed43c48e93dad04bd59b173b696eeef2a8765734 Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Tue, 9 Oct 2018 15:34:44 +0200 Subject: [PATCH] Update SplitLargeMeshes.cpp Fix double-parthesis. --- code/SplitLargeMeshes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/SplitLargeMeshes.cpp b/code/SplitLargeMeshes.cpp index 3b127d6b9..5cd3afe48 100644 --- a/code/SplitLargeMeshes.cpp +++ b/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; } }