This commit is contained in:
Klaus Basan
2019-07-03 02:38:04 +02:00
committed by Mat Sutcliffe
parent be3283305a
commit 92baa16536
3 changed files with 11 additions and 8 deletions

View File

@@ -420,8 +420,8 @@ namespace BlackMisc
const ITimestampBased &l = last;
const ITimestampBased &o = object;
const qint64 diff = l.getAbsTimeDifferenceMs(o);
if (diff > mmm.max) { mmm.max = diff; }
if (diff < mmm.min) { mmm.min = diff; }
if (diff > mmm.max) { mmm.max = diff; }
if (diff < mmm.min) { mmm.min = diff; }
mean += diff;
}
c++;