From 8958780b188560d9f1d0261e5a24ff274dbc42df Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 18 Oct 2017 23:36:50 +0200 Subject: [PATCH] Time must be signed. --- server/TracyView.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/TracyView.hpp b/server/TracyView.hpp index 23a7c6f5..988d1155 100644 --- a/server/TracyView.hpp +++ b/server/TracyView.hpp @@ -240,8 +240,8 @@ private: const MessageData* m_msgHighlight; bool m_drawRegion; - uint64_t m_regionStart; - uint64_t m_regionEnd; + int64_t m_regionStart; + int64_t m_regionEnd; bool m_showOptions; bool m_showMessages;