mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-13 16:07:40 +00:00
- removed constructor and destructor from FDMDModel::ModelFrame because they were redundant and only caused double deletion of its contents.
This commit is contained in:
parent
cb74dd99ef
commit
b6dab83d2b
1 changed files with 0 additions and 11 deletions
|
@ -94,17 +94,6 @@ protected:
|
||||||
char name[16];
|
char name[16];
|
||||||
FModelVertex *vertices;
|
FModelVertex *vertices;
|
||||||
FModelVertex *normals;
|
FModelVertex *normals;
|
||||||
|
|
||||||
ModelFrame()
|
|
||||||
{
|
|
||||||
vertices = normals = NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
~ModelFrame()
|
|
||||||
{
|
|
||||||
if (vertices) delete [] vertices;
|
|
||||||
if (normals) delete [] normals;
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct DMDLoDInfo
|
struct DMDLoDInfo
|
||||||
|
|
Loading…
Reference in a new issue