From 5ebbf83eb3a414e6bf94d3cb5cd9ffec225758d5 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 28 Oct 2017 21:36:47 +0200 Subject: [PATCH] Time variables should be signed. --- server/TracyView.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/TracyView.hpp b/server/TracyView.hpp index 7bccf82c..12953032 100644 --- a/server/TracyView.hpp +++ b/server/TracyView.hpp @@ -260,8 +260,8 @@ private: int64_t m_zvStartNext; int64_t m_zvEndNext; - uint64_t m_delay; - uint64_t m_resolution; + int64_t m_delay; + int64_t m_resolution; double m_timerMul; std::string m_captureName;