From 409e814815131708aedb1bc705e31914cfe2fb82 Mon Sep 17 00:00:00 2001 From: Brett Date: Tue, 7 Mar 2023 18:03:05 -0500 Subject: [PATCH] forgot convert to ms --- src/blt/profiling/profiler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blt/profiling/profiler.cpp b/src/blt/profiling/profiler.cpp index e0bc220..d58f4ac 100644 --- a/src/blt/profiling/profiler.cpp +++ b/src/blt/profiling/profiler.cpp @@ -99,7 +99,7 @@ namespace blt::profiling { << row.name << "," << std::to_string((double) row.difference / 1000000.0) << "," << std::to_string(row.difference) << "," - << std::to_string(row.total) << "\n"; + << std::to_string((double) row.total / 1000000.0) << "\n"; } out.flush(); } @@ -136,7 +136,7 @@ namespace blt::profiling { row.name, std::to_string((double) row.difference / 1000000.0), std::to_string(row.difference), - std::to_string(row.total)} + std::to_string((double) row.total / 1000000.0)} ); }