Skip to content

Commit

Permalink
Extractors: Do not show a warning in the vmap extractor when a model …
Browse files Browse the repository at this point in the history
…fails to load to avoid confusion
  • Loading branch information
Subv committed Feb 12, 2012
1 parent a7f6c4f commit 836459e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tools/vmap4_extractor/model.cpp
Expand Up @@ -37,7 +37,8 @@ bool Model::open()
if (!ok)
{
f.close();
printf("Error loading model %s\n", filename.c_str());
// Do not show this error on console to avoid confusion, the extractor can continue working even if some models fail to load
//printf("Error loading model %s\n", filename.c_str());
return false;
}

Expand Down

0 comments on commit 836459e

Please sign in to comment.