1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

tmin and tmax don't change.

This commit is contained in:
Bartosz Taudul 2018-06-06 23:00:03 +02:00
parent be8d3f47cd
commit 8a4d88f2b3

View File

@ -3391,8 +3391,8 @@ void View::DrawFindZone()
auto& zoneData = m_worker.GetZonesForSourceLocation( m_findZone.match[m_findZone.selMatch] );
auto& zones = zoneData.zones;
auto tmin = zoneData.min;
auto tmax = zoneData.max;
const auto tmin = zoneData.min;
const auto tmax = zoneData.max;
if( tmin != std::numeric_limits<int64_t>::max() )
{