From d530472045a5ea4f18db7d4340594d52c2b13c36 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 27 Sep 2020 20:56:37 +0200 Subject: [PATCH] No need to format string without formatting. --- 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 b9bd81bc..f453defc 100644 --- a/profiler/src/main.cpp +++ b/profiler/src/main.cpp @@ -1032,7 +1032,7 @@ static void DrawContents() tracy::TextCentered( ICON_FA_BROOM ); animTime += ImGui::GetIO().DeltaTime; tracy::DrawWaitingDots( animTime ); - ImGui::Text( "Please wait, cleanup is in progress" ); + ImGui::TextUnformatted( "Please wait, cleanup is in progress" ); ImGui::EndPopup(); }