Fixes for VS6.0

This commit is contained in:
Robert Osfield
2003-12-24 19:28:39 +00:00
parent 1a99f78aee
commit 96a8fa1f21
5 changed files with 9 additions and 8 deletions

View File

@@ -39,7 +39,8 @@ bool VertexProgram_readLocalData(Object& obj, Input& fr)
while (!fr.eof() && fr[0].getNoNestedBrackets() >= entry) {
if (fr[0].getStr()) {
code.append(std::string(fr[0].getStr()));
code.push_back('\n');
code += '\n'
;
}
++fr;
}