From 429b44ca54d70ac3191a3a013788a6ef492dfdff Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 18 Nov 2017 01:14:37 +0100 Subject: [PATCH] Add separators to GPU zone counts. --- server/TracyView.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 4a87ee1d..f786ff96 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -2043,8 +2043,8 @@ void View::DrawZones() ImGui::Text( "Appeared at %s", TimeToString( t - m_frames[0] ) ); } } - ImGui::Text( "Zone count: %zu", v->count ); - ImGui::Text( "Top-level zones: %zu", v->timeline.size() ); + ImGui::Text( "Zone count: %s", RealToString( v->count, true ) ); + ImGui::Text( "Top-level zones: %s", RealToString( v->timeline.size(), true ) ); ImGui::Text( "Query accuracy bits: %i", v->accuracyBits ); ImGui::EndTooltip(); }