Skip to content

Commit

Permalink
Fix warning: remove printf
Browse files Browse the repository at this point in the history
  • Loading branch information
kimkulling committed Nov 10, 2023
1 parent 0b0ec71 commit aa3abb3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions code/AssetLib/XGL/XGLLoader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -241,9 +241,7 @@ aiNode *XGLImporter::ReadObject(XmlNode &node, TempScope &scope) {
for (size_t i = 0; i < newc - prev; ++i) {
meshes.push_back(static_cast<unsigned int>(i + prev));
}
} else {
printf("skipping empty mesh\n");
}
}
} else if (s == "mat") {
const uint32_t matId = ReadMaterial(child, scope);
if (matId == ErrorId) {
Expand Down

0 comments on commit aa3abb3

Please sign in to comment.