Rolling 20220409

This commit is contained in:
jomjol
2022-09-04 18:16:37 +02:00
parent 47da2d657e
commit 68a596707b
10 changed files with 22 additions and 49 deletions

View File

@@ -63,7 +63,12 @@ void ClassFlowImage::LogImage(string logPath, string name, float *resultFloat, i
if (*resultFloat < 0)
sprintf(buf, "N.N_");
else
{
sprintf(buf, "%.1f_", *resultFloat);
if (strcmp(buf, "10.0_"))
sprintf(buf, "0.0_");
}
} else if (resultInt != NULL) {
sprintf(buf, "%d_", *resultInt);
} else {