aboutsummaryrefslogtreecommitdiffstats
path: root/unicode/src/media/UVisualizer.pas
diff options
context:
space:
mode:
authortobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2009-07-23 20:19:08 +0000
committertobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2009-07-23 20:19:08 +0000
commit95e2044583db3b8dbe0b7d859385ac4fe164f921 (patch)
tree11f6de06b9ffb804c7bd30e372d21a32aae700b8 /unicode/src/media/UVisualizer.pas
parent7a74241f286d875d8663330e3f3033a69c8e3f41 (diff)
downloadusdx-95e2044583db3b8dbe0b7d859385ac4fe164f921.tar.gz
usdx-95e2044583db3b8dbe0b7d859385ac4fe164f921.tar.xz
usdx-95e2044583db3b8dbe0b7d859385ac4fe164f921.zip
string -> UTF8String / IPath
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1904 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r--unicode/src/media/UVisualizer.pas5
1 files changed, 3 insertions, 2 deletions
diff --git a/unicode/src/media/UVisualizer.pas b/unicode/src/media/UVisualizer.pas
index 37e0268a..b25d68a9 100644
--- a/unicode/src/media/UVisualizer.pas
+++ b/unicode/src/media/UVisualizer.pas
@@ -77,6 +77,7 @@ uses
UGraphic,
UMain,
UConfig,
+ UPath,
ULog;
{$IF PROJECTM_VERSION < 1000000} // < 1.0
@@ -130,7 +131,7 @@ type
function Init(): boolean;
function Finalize(): boolean;
- function Open(const aFileName : string): boolean; // true if succeed
+ function Open(const aFileName: IPath): boolean; // true if succeed
procedure Close;
procedure Play;
@@ -183,7 +184,7 @@ begin
Result := true;
end;
-function TVideoPlayback_ProjectM.Open(const aFileName : string): boolean; // true if succeed
+function TVideoPlayback_ProjectM.Open(const aFileName: IPath): boolean; // true if succeed
begin
Result := false;
end;