- removed constructor and destructor from FDMDModel::ModelFrame because they were redundant and only caused double deletion of its contents.

This commit is contained in:
Christoph Oelckers 2013-10-10 23:13:56 +02:00
parent cb74dd99ef
commit b6dab83d2b

View file

@ -94,17 +94,6 @@ protected:
char name[16];
FModelVertex *vertices;
FModelVertex *normals;
ModelFrame()
{
vertices = normals = NULL;
}
~ModelFrame()
{
if (vertices) delete [] vertices;
if (normals) delete [] normals;
}
};
struct DMDLoDInfo