Add ms read time for sf_replay

This commit is contained in:
2020-04-27 15:50:45 +02:00
parent 9da96be369
commit 2a58d0b521
2 changed files with 10 additions and 1 deletions
+2 -1
View File
@@ -199,7 +199,8 @@ int main (int argc, char *argv[])
// TODO: Some poor statistics.
auto ms_duration = chrono::duration_cast<chrono::milliseconds>(end_time-start_time).count();
auto ms_duration = chrono::duration_cast<chrono::milliseconds>(
end_time-start_time).count();
total_ms += ms_duration;
if (ms_duration > max_ms) {
max_ms = ms_duration;