From b4062037941c150a682e75e666ad84e3de506048 Mon Sep 17 00:00:00 2001 From: hrydgard Date: Sun, 28 Jun 2009 15:52:15 +0000 Subject: [PATCH] build fixing git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3571 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Common/Src/BreakPoints.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Common/Src/BreakPoints.cpp b/Source/Core/Common/Src/BreakPoints.cpp index 446852028c..6396e42bde 100644 --- a/Source/Core/Common/Src/BreakPoints.cpp +++ b/Source/Core/Common/Src/BreakPoints.cpp @@ -29,7 +29,7 @@ void TMemCheck::Action(DebugInterface *debug_interface, u32 iValue, u32 addr, bo DEBUG_LOG(MEMMAP, "CHK %08x %s%i at %08x (%s)", iValue, write ? "Write" : "Read", // read or write size*8, addr, // address - debug_interface->GetDescription(addr).c_str() // symbol map description + debug_interface->getDescription(addr).c_str() // symbol map description ); } if (Break)