From d71ecd5271a9809df2671d51814c8e22977b7477 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 27 Apr 2022 17:16:44 +0200 Subject: [PATCH] Make test program data generation rate more sensible. --- test/test.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test.cpp b/test/test.cpp index 325620fb..51cad692 100644 --- a/test/test.cpp +++ b/test/test.cpp @@ -189,6 +189,7 @@ void DepthTest() tracy::SetThreadName( "Depth test" ); for(;;) { + std::this_thread::sleep_for( std::chrono::milliseconds( 1 ) ); ZoneScoped; const auto txt = "Fibonacci (15)"; ZoneText( txt, strlen( txt ) );