From c29f6737e5a7d10372f04f9778979d2e9afe7437 Mon Sep 17 00:00:00 2001 From: PJB3005 Date: Sat, 11 Apr 2026 17:10:04 +0200 Subject: [PATCH] Guess this isn't going to Tracy. --- src/d/d_drawlist.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/d/d_drawlist.cpp b/src/d/d_drawlist.cpp index 98a22ecf13..1474b6f24d 100644 --- a/src/d/d_drawlist.cpp +++ b/src/d/d_drawlist.cpp @@ -14,6 +14,7 @@ #include #include "absl/container/flat_hash_map.h" +#include "client/TracyScoped.hpp" #include "d/d_s_play.h" #include "dusk/frame_interpolation.h" #include "dusk/gx_helper.h" @@ -1952,7 +1953,7 @@ void dDlst_list_c::draw(dDlst_base_c** p_start, dDlst_base_c** p_end) { #if TARGET_PC && (TRACY_ENABLE || PARTIAL_DEBUG) const auto name = getTypeDrawName(dlst); - GX_AND_TRACY_SCOPED(name); + GXScopedDebugGroup scope(name); #endif dlst->draw(); }