From ba41255ccc310f295a26aec0b8da46447835b132 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Mon, 1 May 2023 15:48:33 +0200 Subject: [PATCH] Adjust wording. --- profiler/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiler/src/main.cpp b/profiler/src/main.cpp index 84512d8c..bd666ec7 100644 --- a/profiler/src/main.cpp +++ b/profiler/src/main.cpp @@ -561,7 +561,7 @@ static void DrawContents() tracy::DrawHelpMarker( "Uses all available CPU cores for rendering. May affect performance of the profiled application when running on the same machine." ); if( ImGui::RadioButton( "Disabled", !s_config.threadedRendering ) ) { s_config.threadedRendering = false; SaveConfig(); } ImGui::SameLine(); - tracy::DrawHelpMarker( "Restricts rendering to a single CPU core. Can significantly reduce profiler frame rate." ); + tracy::DrawHelpMarker( "Restricts rendering to a single CPU core. Can reduce profiler frame rate." ); ImGui::PopStyleVar(); ImGui::Unindent(); ImGui::TreePop();