From e8e72fceeda90bfd75b9954022070ce63066cc8a Mon Sep 17 00:00:00 2001 From: Eidolon Date: Mon, 18 Sep 2023 17:24:57 -0500 Subject: [PATCH] Tracy instrument TryRunTics, or at least try to --- src/d_main.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/d_main.cpp b/src/d_main.cpp index 834561fa6..98fe6de7d 100644 --- a/src/d_main.cpp +++ b/src/d_main.cpp @@ -850,7 +850,10 @@ void D_SRB2Loop(void) realtics = 1; // process tics (but maybe not if realtic == 0) - TryRunTics(realtics); + { + ZoneScopedN("TryRunTics"); + TryRunTics(realtics); + } if (lastdraw || singletics || gametic > rendergametic) {