Extractors: Do not show a warning in the vmap extractor when a model fails to load to avoid confusion

This commit is contained in:
Subv
2012-02-12 12:45:45 -05:00
parent a7f6c4f558
commit 836459ef0e

View File

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