From aebbefde2ac1fde8dec92f9a29b3be08cd5fba46 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 28 Mar 2018 01:47:08 +0200 Subject: [PATCH] Rename exclusive time to self time. --- server/TracyView.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index e296e3a0..d4e31137 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -2474,7 +2474,7 @@ void View::DrawZoneInfoWindow() { const auto ty = ImGui::GetTextLineHeight(); ImGui::Columns( 2 ); - ImGui::TextColored( ImVec4( 1.0f, 1.0f, 0.4f, 1.0f ), "Exclusive time" ); + ImGui::TextColored( ImVec4( 1.0f, 1.0f, 0.4f, 1.0f ), "Self time" ); ImGui::NextColumn(); char buf[128]; sprintf( buf, "%s (%.2f%%)", TimeToString( ztime - ctime ), double( ztime - ctime ) / ztime * 100 ); @@ -2587,7 +2587,7 @@ void View::DrawGpuInfoWindow() { const auto ty = ImGui::GetTextLineHeight(); ImGui::Columns( 2 ); - ImGui::TextColored( ImVec4( 1.0f, 1.0f, 0.4f, 1.0f ), "Exclusive time" ); + ImGui::TextColored( ImVec4( 1.0f, 1.0f, 0.4f, 1.0f ), "Self time" ); ImGui::NextColumn(); char buf[128]; sprintf( buf, "%s (%.2f%%)", TimeToString( ztime - ctime ), double( ztime - ctime ) / ztime * 100 );