diff options
| author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-16 17:28:15 +0200 | 
|---|---|---|
| committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-16 17:28:15 +0200 | 
| commit | 81a9b43e12a32340262fa0e74005c7e6bd25eba7 (patch) | |
| tree | 9677122d27752f839407a8cd11feea87a1d4110e /src/crepe/api | |
| parent | 1f82ffa4d3ee8355215d43bf43edf8cecaca0d1d (diff) | |
properly clean up Script instance
Diffstat (limited to 'src/crepe/api')
| -rw-r--r-- | src/crepe/api/BehaviorScript.cpp | 8 | ||||
| -rw-r--r-- | src/crepe/api/BehaviorScript.h | 2 | 
2 files changed, 9 insertions, 1 deletions
| diff --git a/src/crepe/api/BehaviorScript.cpp b/src/crepe/api/BehaviorScript.cpp index 2dd933e..e8a85dd 100644 --- a/src/crepe/api/BehaviorScript.cpp +++ b/src/crepe/api/BehaviorScript.cpp @@ -1,5 +1,6 @@  #include "../util/log.h" +#include "Script.h"  #include "BehaviorScript.h"  using namespace crepe::api; @@ -8,3 +9,10 @@ BehaviorScript::BehaviorScript() {  	dbg_trace();  } +BehaviorScript::~BehaviorScript() { +	if (this->script != nullptr) { +		delete this->script; +		this->script = nullptr; +	} +} + diff --git a/src/crepe/api/BehaviorScript.h b/src/crepe/api/BehaviorScript.h index 052d764..e197991 100644 --- a/src/crepe/api/BehaviorScript.h +++ b/src/crepe/api/BehaviorScript.h @@ -16,7 +16,7 @@ protected:  	friend class crepe::ComponentManager;  	BehaviorScript();  public: -	virtual ~BehaviorScript() = default; +	virtual ~BehaviorScript();  public:  	template<class T> |