use minutes, not seconds, as the y-axis says

This commit is contained in:
Sean C. Rhea
2008-03-07 20:11:55 +00:00
parent 26e0336f62
commit 2c2d1eedb6

View File

@@ -65,7 +65,7 @@ PowerHist::recalc()
smoothWatts[i] = low;
smoothTime[i] = 0.0;
while (low < high)
smoothTime[i] += array[low++];
smoothTime[i] += array[low++] / 60.0;
}
smoothTime[i] = 0.0;
smoothWatts[i] = i * binw;