forgot convert to ms

v1
Brett 2023-03-07 18:03:05 -05:00
parent 13b7c3905b
commit 409e814815
1 changed files with 2 additions and 2 deletions

View File

@ -99,7 +99,7 @@ namespace blt::profiling {
<< row.name << "," << row.name << ","
<< std::to_string((double) row.difference / 1000000.0) << "," << std::to_string((double) row.difference / 1000000.0) << ","
<< std::to_string(row.difference) << "," << std::to_string(row.difference) << ","
<< std::to_string(row.total) << "\n"; << std::to_string((double) row.total / 1000000.0) << "\n";
} }
out.flush(); out.flush();
} }
@ -136,7 +136,7 @@ namespace blt::profiling {
row.name, row.name,
std::to_string((double) row.difference / 1000000.0), std::to_string((double) row.difference / 1000000.0),
std::to_string(row.difference), std::to_string(row.difference),
std::to_string(row.total)} std::to_string((double) row.total / 1000000.0)}
); );
} }