diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-12-18 23:47:42 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-12-18 23:47:42 +0000 |
commit | 0f482be3ee9588081363963b382faabcef07c295 (patch) | |
tree | cf29b362792fe7dc95196350c1b323e540f5366c /Game/Code/Classes | |
parent | e9e0cc34b7d492fcbcc5614d197ba536cacb2bc0 (diff) | |
download | usdx-0f482be3ee9588081363963b382faabcef07c295.tar.gz usdx-0f482be3ee9588081363963b382faabcef07c295.tar.xz usdx-0f482be3ee9588081363963b382faabcef07c295.zip |
Added a missing override for the destroy-destructor
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@730 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | Game/Code/Classes/UTexture.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Game/Code/Classes/UTexture.pas b/Game/Code/Classes/UTexture.pas index 445c7d4f..8701673e 100644 --- a/Game/Code/Classes/UTexture.pas +++ b/Game/Code/Classes/UTexture.pas @@ -100,7 +100,7 @@ type function CreateTexture(var Data: array of byte; Name: string; W, H: word; Bits: byte): TTexture; procedure UnloadTexture(Name: string; FromCache: boolean); Constructor Create; - Destructor Destroy; + Destructor Destroy; override; end; var |