fix the whitespaces

pull/3042/head
iamAdrianIusca 2020-04-23 22:25:38 +03:00
parent bcd86ccc76
commit 74931fe6d9
1 changed files with 4 additions and 4 deletions

View File

@ -78,11 +78,11 @@ bool LimitBoneWeightsProcess::IsActive( unsigned int pFlags) const
// Executes the post processing step on the given imported data.
void LimitBoneWeightsProcess::Execute( aiScene* pScene)
{
ASSIMP_LOG_DEBUG("LimitBoneWeightsProcess begin");
ASSIMP_LOG_DEBUG("LimitBoneWeightsProcess begin");
for (unsigned int m = 0; m < pScene->mNumMeshes; ++m) {
ProcessMesh(pScene->mMeshes[m]);
}
for (unsigned int m = 0; m < pScene->mNumMeshes; ++m) {
ProcessMesh(pScene->mMeshes[m]);
}
ASSIMP_LOG_DEBUG("LimitBoneWeightsProcess end");
}