From e5710f47035f4aa3a308f95ea5e8b2826d228e54 Mon Sep 17 00:00:00 2001 From: utak3r Date: Sat, 29 Apr 2006 08:55:05 +0000 Subject: [PATCH] Fixed problems with spaces in flam3 renderer path. --- 2.10/Source/Main.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2.10/Source/Main.pas b/2.10/Source/Main.pas index 241004c..5d06ca2 100644 --- a/2.10/Source/Main.pas +++ b/2.10/Source/Main.pas @@ -3685,7 +3685,7 @@ begin // short path names are confusing (for both user AND system) // (and they're quite ugly after all! :) - FileList.Add(hqiPath + ' < "' + ChangeFileExt(ExportDialog.Filename, '.flame') + '"'); + FileList.Add('"' + hqiPath + '" < "' + ChangeFileExt(ExportDialog.Filename, '.flame') + '"'); Path := ExtractFilePath(ExtractFileDir(ExportDialog.Filename) + '\'); FileList.SaveToFile(Path + 'render.bat');