From 844bc1e416074353003be9ddd8e8b41f75a670e4 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 24 Aug 2024 16:37:04 +0200 Subject: [PATCH] Display die jumps in wait regions list. --- profiler/src/profiler/TracyView_ZoneInfo.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/profiler/src/profiler/TracyView_ZoneInfo.cpp b/profiler/src/profiler/TracyView_ZoneInfo.cpp index 12273d83..9953314e 100644 --- a/profiler/src/profiler/TracyView_ZoneInfo.cpp +++ b/profiler/src/profiler/TracyView_ZoneInfo.cpp @@ -686,6 +686,11 @@ void View::DrawZoneInfoWindow() ImGui::SameLine(); TextDisabledUnformatted( "P" ); } + else if( tt0->die != tt1->die ) + { + ImGui::SameLine(); + TextDisabledUnformatted( "D" ); + } else if( tt0->core != tt1->core ) { ImGui::SameLine();