diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 9a4fe24d..2821cb06 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -2478,7 +2478,7 @@ int View::DispatchGpuZoneLevel( const Vector& vec, bool hover, double static int64_t AdjustGpuTime( int64_t time, int64_t begin, int drift ) { - if( time == -1 ) return -1; + if( time == -1 || time == std::numeric_limits::max() ) return time; const auto t = time - begin; return time + t / 1000000000 * drift; }