summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX/Src/CodeWindow.cpp
diff options
context:
space:
mode:
authorSonicadvance1 <sonicadvance1@gmail.com>2009-07-07 14:04:56 +0000
committerSonicadvance1 <sonicadvance1@gmail.com>2009-07-07 14:04:56 +0000
commit440c0c1d1422fdd4d9ea72dc8baed0066aeaba22 (patch)
tree4614d9d5b976aa0919a9c8779eeaed19db5e03c6 /Source/Core/DebuggerWX/Src/CodeWindow.cpp
parentcfb25186124335b462e5279ccf11668b60daab83 (diff)
Trying to get Dolphin to compile in Xcode, had to rename the Debugger namespace to something else since the name collided in OS X when using Xcode/Cocoa. Everything compiles except for the GL plugin, and the actual main Dolphin program. Will be trying to get them to compile after sleeping
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3701 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DebuggerWX/Src/CodeWindow.cpp')
-rw-r--r--Source/Core/DebuggerWX/Src/CodeWindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DebuggerWX/Src/CodeWindow.cpp b/Source/Core/DebuggerWX/Src/CodeWindow.cpp
index 3fc2794d4a..d12fe22cad 100644
--- a/Source/Core/DebuggerWX/Src/CodeWindow.cpp
+++ b/Source/Core/DebuggerWX/Src/CodeWindow.cpp
@@ -830,9 +830,9 @@ void CCodeWindow::UpdateCallstack()
{
callstack->Clear();
- std::vector<Debugger::CallstackEntry> stack;
+ std::vector<Dolphin_Debugger::CallstackEntry> stack;
- if (Debugger::GetCallstack(stack))
+ if (Dolphin_Debugger::GetCallstack(stack))
{
for (size_t i = 0; i < stack.size(); i++)
{