Browse Source

Remove not needed init.

kkulling 6 năm trước cách đây
mục cha
commit
b87f4c03ba
1 tập tin đã thay đổi với 0 bổ sung4 xóa
  1. 0 4
      code/CreateAnimMesh.cpp

+ 0 - 4
code/CreateAnimMesh.cpp

@@ -47,10 +47,6 @@ namespace Assimp    {
 aiAnimMesh *aiCreateAnimMesh(const aiMesh *mesh)
 {
     aiAnimMesh *animesh = new aiAnimMesh;
-    /*animesh->mVertices = NULL;
-    animesh->mNormals = NULL;
-    animesh->mTangents = NULL;
-    animesh->mBitangents = NULL;*/
     animesh->mNumVertices = mesh->mNumVertices;
     if (mesh->mVertices) {
         animesh->mVertices = new aiVector3D[animesh->mNumVertices];