From b87f4c03bab4df875d5ec05be15809bbec73d342 Mon Sep 17 00:00:00 2001 From: kkulling Date: Tue, 9 Jul 2019 11:49:59 +0200 Subject: [PATCH] Remove not needed init. --- code/CreateAnimMesh.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/code/CreateAnimMesh.cpp b/code/CreateAnimMesh.cpp index ab7dac5ca..98b60e531 100644 --- a/code/CreateAnimMesh.cpp +++ b/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];