OClCollMeshEngn: Print values >= 116; not only >

This commit is contained in:
2025-11-23 13:30:04 -04:00
parent d01e448b40
commit 617020b534
@@ -1095,7 +1095,7 @@ public:
for (size_t i = 0; i < totalPoints; ++i) for (size_t i = 0; i < totalPoints; ++i)
{ {
float intensity = intensityFloats[i]; float intensity = intensityFloats[i];
if (intensity > 116.0f) if (intensity >= 116.0f)
{ {
++highIntensityCount; ++highIntensityCount;
} }