From 56b4424399e9e54853fb8558d0f5591de7e570c2 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 25 May 2024 13:03:32 +0200 Subject: [PATCH] Be consistent with how statistics shows inline counts. --- profiler/src/profiler/TracySourceView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiler/src/profiler/TracySourceView.cpp b/profiler/src/profiler/TracySourceView.cpp index fc135e36..5f3bc318 100644 --- a/profiler/src/profiler/TracySourceView.cpp +++ b/profiler/src/profiler/TracySourceView.cpp @@ -1231,7 +1231,7 @@ void SourceView::RenderSymbolView( Worker& worker, View& view ) { ImGui::SameLine(); ImGui::AlignTextToFramePadding(); - ImGui::TextDisabled( "(%s inlined functions)", RealToString( inlineCount + 1 ) ); + ImGui::TextDisabled( "(+%s inlined functions)", RealToString( inlineCount ) ); } if( m_calcInlineStats ) {