Fixed wrapping of text string to allow internal "" strings

This commit is contained in:
Robert Osfield
2005-04-16 10:18:56 +00:00
parent 1525a00e1f
commit 20f26ee011

View File

@@ -85,7 +85,7 @@ bool Shader_writeLocalData(const Object& obj,Output& fw)
std::vector<std::string>::const_iterator j;
for (j=lines.begin(); j!=lines.end(); ++j) {
fw.indent() << "\"" << *j << "\"\n";
fw.indent() << fw.wrapString(*j) << "\n";
}
fw.moveOut();