Merge pull request #4308 from aldelaro5/memcheck-gui-relabel

Label debugger memchecks as "Memory Breakpoints" in the GUI
This commit is contained in:
Markus Wick
2016-10-06 21:29:14 +02:00
committed by GitHub
5 changed files with 7 additions and 7 deletions

View File

@ -214,7 +214,7 @@ bool TMemCheck::Action(DebugInterface* debug_interface, u32 iValue, u32 addr, bo
{
if (Log)
{
NOTICE_LOG(MEMMAP, "CHK %08x (%s) %s%i %0*x at %08x (%s)", pc,
NOTICE_LOG(MEMMAP, "MBP %08x (%s) %s%i %0*x at %08x (%s)", pc,
debug_interface->GetDescription(pc).c_str(), write ? "Write" : "Read", size * 8,
size * 2, iValue, addr, debug_interface->GetDescription(addr).c_str());
}