diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 01a7919b..685d255f 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -19245,7 +19245,7 @@ uint64_t View::GetZoneThread( const GpuEvent& zone ) const { for( const auto& ctx : m_worker.GetGpuData() ) { - assert( ctx->threadData.size() == 1 ); + if ( ctx->threadData.size() != 1 ) continue; const Vector>* timeline = &ctx->threadData.begin()->second.timeline; if( timeline->empty() ) continue; for(;;)