2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 22:27:43 +00:00

Memory leak fix

This commit is contained in:
Jack Andersen
2015-09-29 11:50:47 -10:00
parent c8809cad15
commit eed44c8230
3 changed files with 4 additions and 1 deletions

View File

@@ -157,6 +157,7 @@ struct ANCS : BigYAML
struct IMetaAnim : BigYAML struct IMetaAnim : BigYAML
{ {
Delete expl; Delete expl;
virtual ~IMetaAnim() {}
enum Type enum Type
{ {
MAPrimitive = 0, MAPrimitive = 0,
@@ -265,6 +266,7 @@ struct ANCS : BigYAML
struct IMetaTrans : BigYAML struct IMetaTrans : BigYAML
{ {
Delete expl; Delete expl;
virtual ~IMetaTrans() {}
enum Type enum Type
{ {
MTMetaAnim = 0, MTMetaAnim = 0,

View File

@@ -130,6 +130,7 @@ struct CHAR : BigYAML
struct IMetaAnim : BigYAML struct IMetaAnim : BigYAML
{ {
Delete expl; Delete expl;
virtual ~IMetaAnim() {}
enum Type enum Type
{ {
MAPrimitive = 0, MAPrimitive = 0,

2
hecl

Submodule hecl updated: fe3db394c6...a0f708ae89