diff options
Diffstat (limited to '')
-rw-r--r-- | Game/Code/lib/projectM/projectM-1_0.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Game/Code/lib/projectM/projectM-1_0.inc b/Game/Code/lib/projectM/projectM-1_0.inc index a1c1c1f4..96b224ae 100644 --- a/Game/Code/lib/projectM/projectM-1_0.inc +++ b/Game/Code/lib/projectM/projectM-1_0.inc @@ -68,6 +68,8 @@ end; constructor TProjectM.Create(const configFile: string); begin + inherited Create(); + // we cannot catch C++ exceptions in delphi, so we have to check // if configFile is valid first if (FileExists(configFile)) then @@ -166,5 +168,6 @@ destructor TProjectM.Destroy(); begin _projectM_free(data); data := nil; + inherited; end; |