From de2ca9b22a1ea78257d9530ad0bd3860ef9897f6 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 9 Jun 2021 20:41:13 +0200 Subject: [PATCH] Change check for showing GPU timestamp accuracy. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index ceb3a0d8..064986e1 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -3143,7 +3143,7 @@ void View::DrawZones() } } TextFocused( "Zone count:", RealToString( v->count ) ); - if( isMultithreaded ) + if( v->period != 1.f ) { TextFocused( "Timestamp accuracy:", TimeToString( v->period ) ); }