mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
Select 3 frames, not 2.
This commit is contained in:
parent
ee273934e3
commit
43dc12ca39
@ -513,7 +513,7 @@ void View::DrawFrames()
|
||||
if( !m_pause )
|
||||
{
|
||||
m_frameStart = ( total < onScreen * group ) ? 0 : total - onScreen * group;
|
||||
m_zvStart = m_frames[std::max( 0, (int)m_frames.size() - 3 )];
|
||||
m_zvStart = m_frames[std::max( 0, (int)m_frames.size() - 4 )];
|
||||
m_zvEnd = m_frames.back();
|
||||
}
|
||||
|
||||
@ -601,7 +601,7 @@ void View::DrawFrames()
|
||||
}
|
||||
|
||||
const auto zitbegin = std::lower_bound( m_frames.begin(), m_frames.end(), m_zvStart );
|
||||
const auto zitend = std::upper_bound( m_frames.begin(), m_frames.end(), m_zvEnd );
|
||||
const auto zitend = std::lower_bound( m_frames.begin(), m_frames.end(), m_zvEnd );
|
||||
|
||||
const auto zbegin = (int)std::distance( m_frames.begin(), zitbegin );
|
||||
const auto zend = (int)std::distance( m_frames.begin(), zitend );
|
||||
|
Loading…
Reference in New Issue
Block a user