diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 654f40a4..0150294b 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -19275,7 +19275,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(;;)