From 99e638b3fc2264096f036d6c835588eec23f435f Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Tue, 18 Jun 2019 19:41:20 +0200 Subject: [PATCH] Normalize values during compare by default. --- server/TracyView.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.hpp b/server/TracyView.hpp index 3194926a..29e32092 100644 --- a/server/TracyView.hpp +++ b/server/TracyView.hpp @@ -453,7 +453,7 @@ private: bool logVal = false; bool logTime = true; bool cumulateTime = false; - bool normalize = false; + bool normalize = true; int64_t numBins = -1; std::unique_ptr bins, binTime; std::vector sorted[2];