Browse Source

Merge pull request #4704 from JG-Adams/patch-1

Wrong object is created here!
Kim Kulling 3 years ago
parent
commit
8352f0478a
1 changed files with 1 additions and 2 deletions
  1. 1 2
      code/PostProcessing/JoinVerticesProcess.cpp

+ 1 - 2
code/PostProcessing/JoinVerticesProcess.cpp

@@ -345,8 +345,7 @@ int JoinVerticesProcess::ProcessMesh( aiMesh* pMesh, unsigned int meshIndex) {
             uniqueVertices.push_back(v);
             if (hasAnimMeshes) {
                 for (unsigned int animMeshIndex = 0; animMeshIndex < pMesh->mNumAnimMeshes; animMeshIndex++) {
-                    Vertex aniMeshVertex(pMesh->mAnimMeshes[animMeshIndex], a);
-                    uniqueAnimatedVertices[animMeshIndex].push_back(v);
+                    uniqueAnimatedVertices[animMeshIndex].emplace_back(pMesh->mAnimMeshes[animMeshIndex], a);
                 }
             }
         } else{