1
0
mirror of https://github.com/wolfpld/tracy synced 2025-04-29 12:23:53 +00:00

Display base symbol address in symbol view window.

This commit is contained in:
Bartosz Taudul 2020-08-13 16:36:13 +02:00
parent 27bf6c17ef
commit fa7d515165

View File

@ -977,6 +977,8 @@ void SourceView::RenderSymbolView( const Worker& worker, View& view )
}
ImGui::SameLine();
TextDisabledUnformatted( worker.GetString( sym->imageName ) );
ImGui::SameLine();
ImGui::TextDisabled( "0x%" PRIx64, m_baseAddr );
const bool limitView = view.m_statRange.active;
auto inlineList = worker.GetInlineSymbolList( m_baseAddr, m_codeLen );