mirror of
https://github.com/wolfpld/tracy.git
synced 2026-08-07 13:59:17 +00:00
Use correct address range.
This commit is contained in:
@@ -890,7 +890,7 @@ void SourceView::RenderLine( const Line& line, int lineNum, uint32_t ipcnt, uint
|
||||
{
|
||||
for( auto& addr : *addresses )
|
||||
{
|
||||
match += ( addr >= m_symAddr && addr < m_symAddr + m_codeLen );
|
||||
match += ( addr >= m_baseAddr && addr < m_baseAddr + m_codeLen );
|
||||
}
|
||||
}
|
||||
if( match > 0 )
|
||||
|
||||
Reference in New Issue
Block a user