From 5788eea8ade2ebe03c30a12ec3e03b927555e313 Mon Sep 17 00:00:00 2001 From: Par Winzell Date: Thu, 3 May 2018 18:58:58 -0700 Subject: [PATCH] Don't tell me you did nothing. --- src/RawModel.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/RawModel.cpp b/src/RawModel.cpp index 1353743..148776d 100644 --- a/src/RawModel.cpp +++ b/src/RawModel.cpp @@ -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); }