Revert "Base address is not needed."

This reverts commit 058369bc7a.
This commit is contained in:
Bartosz Taudul 2020-03-28 00:57:41 +01:00
parent 22cae56ab1
commit 8dba099a56
2 changed files with 2 additions and 0 deletions

View File

@ -38,6 +38,7 @@ void SourceView::Open( const char* fileName, int line, uint64_t baseAddr, uint64
m_targetLine = line;
m_selectedLine = line;
m_targetAddr = symAddr;
m_baseAddr = baseAddr;
m_symAddr = symAddr;
if( m_file != fileName )

View File

@ -40,6 +40,7 @@ private:
ImFont* m_font;
const char* m_file;
uint64_t m_symAddr;
uint64_t m_baseAddr;
uint64_t m_targetAddr;
char* m_data;
size_t m_dataSize;