1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Time variables should be signed.

This commit is contained in:
Bartosz Taudul 2017-10-28 21:36:47 +02:00
parent adeb9b74f9
commit 5ebbf83eb3

View File

@ -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;