1
0
mirror of https://github.com/wolfpld/tracy synced 2025-05-03 14:03:52 +00:00

Fix saving source location payload data.

This commit is contained in:
Bartosz Taudul 2019-11-02 14:28:59 +01:00
parent 16bc862904
commit 45ff14d678

View File

@ -5446,7 +5446,7 @@ void Worker::Write( FileWrite& f )
f.Write( &sz, sizeof( sz ) );
for( auto& v : m_data.sourceLocationPayload )
{
f.Write( v, sizeof( *v ) );
f.Write( v, sizeof( SourceLocationBase ) );
}
#ifndef TRACY_NO_STATISTICS