diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-03-06 17:06:44 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-03-06 17:06:44 +0000 |
commit | bca530968b6cfbabca755957f351a29bb42150e4 (patch) | |
tree | e3477b84ad3d571b13e2c2a89c2d1dad5c8b6da3 /Game/Code/Classes/UVideo.pas | |
parent | 86703a13c79ceabf9d9b98b0cb8fc5115dfba05b (diff) | |
download | usdx-bca530968b6cfbabca755957f351a29bb42150e4.tar.gz usdx-bca530968b6cfbabca755957f351a29bb42150e4.tar.xz usdx-bca530968b6cfbabca755957f351a29bb42150e4.zip |
replaced some "string" parameters with "const string"
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@923 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | Game/Code/Classes/UVideo.pas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Game/Code/Classes/UVideo.pas b/Game/Code/Classes/UVideo.pas index c7bf9a1a..7f595928 100644 --- a/Game/Code/Classes/UVideo.pas +++ b/Game/Code/Classes/UVideo.pas @@ -103,7 +103,7 @@ type function GetName: String;
procedure init();
- function Open( aFileName : string): boolean; // true if succeed
+ function Open(const aFileName : string): boolean; // true if succeed
procedure Close;
procedure Play;
@@ -433,7 +433,7 @@ begin end;
-function TVideoPlayback_ffmpeg.Open( aFileName : string): boolean; // true if succeed
+function TVideoPlayback_ffmpeg.Open(const aFileName : string): boolean; // true if succeed
var
errnum, i, x,y: Integer;
lStreamsCount : Integer;
|