diff options
author | jaybinks <jaybinks@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-12-06 09:39:49 +0000 |
---|---|---|
committer | jaybinks <jaybinks@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-12-06 09:39:49 +0000 |
commit | 486ad8796acc5883ef83f3a78cd615f6711d77f0 (patch) | |
tree | 14e379cad1e87a10056dd4b5bca160c733aa2a5f /Game/Code/Classes/UPlatform.pas | |
parent | 6a6ef888e1132505da264e395d2c1ca08fffecc5 (diff) | |
download | usdx-486ad8796acc5883ef83f3a78cd615f6711d77f0.tar.gz usdx-486ad8796acc5883ef83f3a78cd615f6711d77f0.tar.xz usdx-486ad8796acc5883ef83f3a78cd615f6711d77f0.zip |
conformed projectM to IVideoPlayback
still needs a little work.
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@678 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | Game/Code/Classes/UPlatform.pas | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Game/Code/Classes/UPlatform.pas b/Game/Code/Classes/UPlatform.pas index 878c1ec2..a06914d0 100644 --- a/Game/Code/Classes/UPlatform.pas +++ b/Game/Code/Classes/UPlatform.pas @@ -18,10 +18,10 @@ uses Classes; type TDirectoryEntry = Record - Name : WideString; - IsDirectory : Boolean; - IsFile : Boolean; - end; + Name : WideString; + IsDirectory : Boolean; + IsFile : Boolean; + end; TDirectoryEntryArray = Array of TDirectoryEntry; @@ -81,6 +81,5 @@ initialization {$ENDIF} finalization - - Platform.Free; + freeandnil( Platform ); end. |