From a7a36c08cb155f42f46c26f8fd14dcc30c788ad8 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 12 Jul 2020 00:04:05 +0200 Subject: [PATCH] Fix frame number formatting. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index c041e93f..2544ac73 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -2177,7 +2177,7 @@ bool View::DrawZoneFrames( const FrameData& frames ) if( fsz - 7 <= tx ) { static char tmp[256]; - sprintf( tmp, "%i (%s)", i, TimeToString( ftime ) ); + sprintf( tmp, "%s (%s)", RealToString( i ), TimeToString( ftime ) ); buf = tmp; tx = ImGui::CalcTextSize( buf ).x; }