diff --git a/Source/Core/Common/Src/BreakPoints.cpp b/Source/Core/Common/Src/BreakPoints.cpp index 8857afcecc..4a0956b8e2 100644 --- a/Source/Core/Common/Src/BreakPoints.cpp +++ b/Source/Core/Common/Src/BreakPoints.cpp @@ -26,9 +26,9 @@ void TMemCheck::Action(DebugInterface *debug_interface, u32 iValue, u32 addr, bo { if (Log) { - DEBUG_LOG(MEMMAP, "CHK %08x %s%i at %08x (%s)", - iValue, write ? "Write" : "Read", // read or write - size*8, addr, // address + DEBUG_LOG(MEMMAP, "CHK %08x %s%i %08x at %08x (%s)", + debug_interface->getPC(), + write ? "Write" : "Read", size*8, iValue, addr, // address debug_interface->getDescription(addr).c_str() // symbol map description ); }