Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf.pld@gmail.com>2019-08-14 22:53:09 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2019-08-14 22:53:09 +0300
commit7549c50babe29d5288e44292212b0834233a24de (patch)
treed731c3ba2a1a88b8a17ebefd4b987b283cd3a618 /server/TracyView.hpp
parent29819321b9055c0bc4b17d90be4e23ff18da09ce (diff)
Fix time range reset condition.
Diffstat (limited to 'server/TracyView.hpp')
-rw-r--r--server/TracyView.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/server/TracyView.hpp b/server/TracyView.hpp
index 2f3ca49d..931b4063 100644
--- a/server/TracyView.hpp
+++ b/server/TracyView.hpp
@@ -418,6 +418,8 @@ private:
average = 0;
median = 0;
total = 0;
+ tmin = std::numeric_limits<int64_t>::max();
+ tmax = std::numeric_limits<int64_t>::min();
}
void ResetGroups()