-
times
+
times
limit to sec
@@ -682,13 +682,13 @@
var speed = (stat.turn * 1000.0) / stat.ts;
row.minSpeed = Math.min(row.minSpeed, speed);
row.meanSpeed += speed;
- row.minSpeed = Math.max(row.minSpeed, speed);
+ row.maxSpeed = Math.max(row.maxSpeed, speed);
row.minTurn = Math.min(row.minTurn, stat.turn);
row.meanTurn += stat.turn;
- row.maxTurn = Math.max(row.minTurn, stat.turn);
+ row.maxTurn = Math.max(row.maxTurn, stat.turn);
row.minScore = Math.min(row.minScore, stat.score);
row.meanScore += stat.score;
- row.maxScore = Math.max(row.minScore, stat.score);
+ row.maxScore = Math.max(row.maxScore, stat.score);
}
for (var i in histo) {
var row = histo[i];