diff options
| author | Sonicadvance1 <sonicadvance1@gmail.com> | 2008-07-20 11:02:41 +0000 |
|---|---|---|
| committer | Sonicadvance1 <sonicadvance1@gmail.com> | 2008-07-20 11:02:41 +0000 |
| commit | c7795c41b7f44bed9e6c1dbab40edebfe8566ded (patch) | |
| tree | c22daf09bb367e78062cddd4a806f85aaa6e83a9 /Source/Core/DebuggerWX/src/CodeWindow.cpp | |
| parent | 35950043a663ac0e07666a44955de526fb1ee8c6 (diff) | |
Linux: Fix ups for people running Linux. If it breaks anything, punch me in the face.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@30 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DebuggerWX/src/CodeWindow.cpp')
| -rw-r--r-- | Source/Core/DebuggerWX/src/CodeWindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DebuggerWX/src/CodeWindow.cpp b/Source/Core/DebuggerWX/src/CodeWindow.cpp index 1f76422786..c2d2935423 100644 --- a/Source/Core/DebuggerWX/src/CodeWindow.cpp +++ b/Source/Core/DebuggerWX/src/CodeWindow.cpp @@ -39,7 +39,7 @@ #include "LogManager.h"
// ugly that this lib included code from the main
-#include "../../DolphinWX/src/globals.h"
+#include "../../DolphinWX/src/Globals.h"
class SymbolList
: public wxListCtrl
@@ -348,7 +348,7 @@ void CCodeWindow::Update() }
else
{
- callstack->Append("invalid callstack");
+ callstack->Append(wxString::FromAscii("invalid callstack"));
}
UpdateButtonStates();
|
