PPU Analyzer: Move ppu_function::callers to lower sizeof(ppu_function)

This commit is contained in:
Elad 2025-01-16 12:30:50 +02:00
parent ff89a08ee4
commit 5a5e475c6e
3 changed files with 20 additions and 17 deletions

View file

@ -188,7 +188,7 @@ Function* PPUTranslator::Translate(const ppu_function& info)
// Instruction address is (m_addr + base)
const u64 base = m_reloc ? m_reloc->addr : 0;
m_addr = info.addr - base;
m_attr = m_info.attr + info.attr;
m_attr = m_info.attr;
m_function = m_module->getFunction(fmt::format("__0x%x", m_addr));