Profiling code: C89 style

This commit is contained in:
o9000
2016-10-08 18:32:38 +02:00
parent 8ab7700123
commit 567fed2981

View File

@@ -122,7 +122,8 @@ void fps_compute_stats(double *low, double *median, double *high, double *sample
float cum_median = 0.5f * total; float cum_median = 0.5f * total;
float cum_high = 0.95f * total; float cum_high = 0.95f * total;
float cum = 0; float cum = 0;
for (int i = 1; i <= 166; i++) { int i;
for (i = 1; i <= 166; i++) {
double value = double value =
(i < 60) ? i : (i < 74) ? (60 + (i - 60) * 10) : (i < 146) ? (200 + (i - 74) * 25) (i < 60) ? i : (i < 74) ? (60 + (i - 60) * 10) : (i < 146) ? (200 + (i - 74) * 25)
: (i < 165) ? (2000 + (i - 146) * 1000) : 20000; : (i < 165) ? (2000 + (i - 146) * 1000) : 20000;