Don't tell me you did nothing.

This commit is contained in:
Par Winzell 2018-05-03 18:58:58 -07:00
parent e178a75be3
commit 5788eea8ad
1 changed files with 3 additions and 1 deletions

View File

@ -350,7 +350,9 @@ void RawModel::TransformGeometry(ComputeNormalsOption normals)
if (verboseOutput) {
if (normals == ComputeNormalsOption::BROKEN) {
fmt::printf("Repaired %lu empty normals.\n", computedNormalsCount);
if (computedNormalsCount > 0) {
fmt::printf("Repaired %lu empty normals.\n", computedNormalsCount);
}
} else {
fmt::printf("Computed %lu normals.\n", computedNormalsCount);
}