Update SplitLargeMeshes.cpp

Fix double-parthesis.
pull/2148/head
Kim Kulling 2018-10-09 15:34:44 +02:00 committed by GitHub
parent d166e1fd73
commit ed43c48e93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
}