mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Debugger: More useful tag for section suballocs.
This commit is contained in:
parent
2ac7cc38e5
commit
a9668bdb60
1 changed files with 1 additions and 1 deletions
|
@ -549,7 +549,7 @@ int ElfReader::LoadInto(u32 loadAddress, bool fromTop)
|
|||
|
||||
if (s->sh_flags & SHF_ALLOC)
|
||||
{
|
||||
std::string tag = name && name[0] ? StringFromFormat("ELF/%s", name) : StringFromFormat("ELF/%08x", writeAddr);
|
||||
std::string tag = name && name[0] ? StringFromFormat("%s/%s", modName.c_str(), name) : StringFromFormat("%s/%08x", modName.c_str(), writeAddr);
|
||||
NotifyMemInfo(MemBlockFlags::SUB_ALLOC, writeAddr, s->sh_size, tag.c_str(), tag.size());
|
||||
DEBUG_LOG(LOADER,"Data Section found: %s Sitting at %08x, size %08x", name, writeAddr, (u32)s->sh_size);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue