瀏覽代碼

fixed "<Colors ...> ... </Color>" typo

The XML tags did not match. Mismatched tags confuse XML parser kits. So I fixed the tags to match.
Peter LaValle 11 年之前
父節點
當前提交
73e6908c36
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tools/assimp_cmd/WriteDumb.cpp

+ 1 - 1
tools/assimp_cmd/WriteDumb.cpp

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