replace WARNING: with NOTE: to avoid confusing the testsuite

This commit is contained in:
Maxime Gimeno 2021-02-03 14:30:21 +01:00
parent 7f537a19cb
commit df50c4cd0a
1 changed files with 2 additions and 2 deletions

View File

@ -159,9 +159,9 @@ bool read_OBJ(std::istream& is,
}
if(norm_found && verbose)
std::cout<<"WARNING: normals were found in this file, but were discarded."<<std::endl;
std::cout<<"NOTE: normals were found in this file, but were discarded."<<std::endl;
if(tex_found && verbose)
std::cout<<"WARNING: textures were found in this file, but were discarded."<<std::endl;
std::cout<<"NOTE: textures were found in this file, but were discarded."<<std::endl;
if(points.empty() || polygons.empty())
{