[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [14671] trunk/blender/source/blender/ yafray/intern: More fixes for compiling

Joshua Leung aligorith at gmail.com
Sun May 4 12:48:45 CEST 2008


Revision: 14671
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=14671
Author:   aligorith
Date:     2008-05-04 12:48:45 +0200 (Sun, 04 May 2008)

Log Message:
-----------
More fixes for compiling

Modified Paths:
--------------
    trunk/blender/source/blender/yafray/intern/export_File.cpp
    trunk/blender/source/blender/yafray/intern/export_Plugin.cpp

Modified: trunk/blender/source/blender/yafray/intern/export_File.cpp
===================================================================
--- trunk/blender/source/blender/yafray/intern/export_File.cpp	2008-05-04 10:28:10 UTC (rev 14670)
+++ trunk/blender/source/blender/yafray/intern/export_File.cpp	2008-05-04 10:48:45 UTC (rev 14671)
@@ -126,7 +126,7 @@
 	// if relative, expand to full path
 	char cpath[MAXPATHLEN];
 	strcpy(cpath, path.c_str());
-	BLI_convertstringcode(cpath, G.sce, 0);
+	BLI_convertstringcode(cpath, G.sce);
 	path = cpath;
 #ifdef WIN32
 	// add drive char if not there

Modified: trunk/blender/source/blender/yafray/intern/export_Plugin.cpp
===================================================================
--- trunk/blender/source/blender/yafray/intern/export_Plugin.cpp	2008-05-04 10:28:10 UTC (rev 14670)
+++ trunk/blender/source/blender/yafray/intern/export_Plugin.cpp	2008-05-04 10:48:45 UTC (rev 14671)
@@ -278,7 +278,7 @@
 	// if relative, expand to full path
 	char cpath[MAXPATHLEN];
 	strcpy(cpath, path.c_str());
-	BLI_convertstringcode(cpath, G.sce, 0);
+	BLI_convertstringcode(cpath, G.sce);
 	path = cpath;
 #ifdef WIN32
 	// add drive char if not there





More information about the Bf-blender-cvs mailing list