From f33584516bbc77f660745d2ade52d5a27fde2a6f Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 17 Jun 2018 18:37:38 +0200 Subject: [PATCH] Fix yet another regression. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index ac6f9bac..6b72af0f 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -1002,7 +1002,7 @@ void View::DrawZones() const auto t = v->timeline.front()->gpuStart; if( t != std::numeric_limits::max() ) { - ImGui::Text( "Appeared at %s", TimeToString( t - m_worker.GetFrameTime( 0 ) ) ); + ImGui::Text( "Appeared at %s", TimeToString( t - m_worker.GetFrameBegin( 0 ) ) ); } } ImGui::Text( "Zone count: %s", RealToString( v->count, true ) );