diff --git a/code/ASELoader.cpp b/code/ASELoader.cpp index a3f180a31..2447dcfe3 100644 --- a/code/ASELoader.cpp +++ b/code/ASELoader.cpp @@ -967,7 +967,7 @@ void ASEImporter::ConvertMeshes(ASE::Mesh& mesh, std::vector& avOutMesh p_pcOut->mNumFaces = (unsigned int)aiSplit[p].size(); // receive output vertex weights - std::vector >* avOutputBones; + std::vector > *avOutputBones = NULL; if (!mesh.mBones.empty()) { avOutputBones = new std::vector >[mesh.mBones.size()]; } @@ -1293,7 +1293,7 @@ bool ASEImporter::GenerateNormals(ASE::Mesh& mesh) { } } } - // The array ís reused + // The array �s reused ComputeNormalsWithSmoothingsGroups(mesh); return false; }