Don't load unneeded data.

This commit is contained in:
Bartosz Taudul 2018-04-22 01:00:17 +02:00
parent 0337569f95
commit 470bfb5c02

View File

@ -3816,7 +3816,7 @@ void View::DrawCompare()
auto f = std::unique_ptr<tracy::FileRead>( tracy::FileRead::Open( fn ) );
if( f )
{
m_compare.second = std::make_unique<Worker>( *f );
m_compare.second = std::make_unique<Worker>( *f, EventType::None );
}
}
catch( const tracy::UnsupportedVersion& e )