corrected bug in the exporting of the texture file name (removed extra space) (thnx to anonymous bug submitter)

This commit is contained in:
Paolo Cignoni 2010-02-26 16:14:20 +00:00
parent 355edd042e
commit 96d770c828
1 changed files with 1 additions and 1 deletions

View File

@ -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()
);
}