Skip to content

Commit

Permalink
fixed "<Colors ...> ... </Color>" typo
Browse files Browse the repository at this point in the history
The XML tags did not match. Mismatched tags confuse XML parser kits. So I fixed the tags to match.
  • Loading branch information
g-pechorin committed Apr 15, 2014
1 parent 85b756a commit 73e6908
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/assimp_cmd/WriteDumb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1258,7 +1258,7 @@ void WriteDump(const aiScene* scene, FILE* out, const char* src, const char* cmd
mesh->mColors[a][n].a);
}
}
fprintf(out,"\t\t</Color>\n");
fprintf(out,"\t\t</Colors>\n");
}
fprintf(out,"\t</Mesh>\n");
}
Expand Down

0 comments on commit 73e6908

Please sign in to comment.