From 96d770c82865e1292b5244ebbc38abcba8f98702 Mon Sep 17 00:00:00 2001 From: cignoni Date: Fri, 26 Feb 2010 16:14:20 +0000 Subject: [PATCH] corrected bug in the exporting of the texture file name (removed extra space) (thnx to anonymous bug submitter) --- wrap/io_trimesh/export_vrml.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrap/io_trimesh/export_vrml.h b/wrap/io_trimesh/export_vrml.h index 797aae33..a8a35b68 100644 --- a/wrap/io_trimesh/export_vrml.h +++ b/wrap/io_trimesh/export_vrml.h @@ -271,7 +271,7 @@ namespace vcg { if(m.textures.size()) { fprintf(fp, - " texture ImageTexture { url \" %s \" }\n" + " texture ImageTexture { url \"%s\" }\n" ,m.textures[0].c_str() ); }