From ea4863d4bdb059aeafd26d916fd13647ab158e6c Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 15 Feb 2018 16:32:36 +0100 Subject: [PATCH] Fix help strings. --- server/TracyView.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 36c667b9..358d4866 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -4158,10 +4158,10 @@ void View::DrawFindZone() { ImGui::InputInt( "max zones per thread", &m_findZone.maxZonesPerThread ); ImGui::SameLine(); - DrawHelpMarker( "0 for unlimitted.\nHigh value or unlimmited zone search may lead to performance issues." ); + DrawHelpMarker( "-1 for unlimited.\nHigh value or unlimited zone search may lead to performance issues." ); ImGui::InputInt( "max depth", &m_findZone.maxDepth ); ImGui::SameLine(); - DrawHelpMarker( "-1 for unlimitted." ); + DrawHelpMarker( "-1 for unlimited." ); ImGui::TreePop(); }