From a71b0d455fcfc7c885fac6ebf1baff4881e85f8c Mon Sep 17 00:00:00 2001 From: hrydgard Date: Sun, 12 Jul 2009 17:08:48 +0000 Subject: [PATCH] Fix compile errors in LLE plugin (sorry) git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3766 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_DSP_LLE/Src/DSPHost.cpp | 2 +- Source/Plugins/Plugin_DSP_LLE/Src/Debugger/DSPRegisterView.cpp | 2 +- Source/Plugins/Plugin_DSP_LLE/Src/main.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Plugins/Plugin_DSP_LLE/Src/DSPHost.cpp b/Source/Plugins/Plugin_DSP_LLE/Src/DSPHost.cpp index 2fea1884b0..89931eed9f 100644 --- a/Source/Plugins/Plugin_DSP_LLE/Src/DSPHost.cpp +++ b/Source/Plugins/Plugin_DSP_LLE/Src/DSPHost.cpp @@ -26,7 +26,7 @@ extern DSPInitialize g_dspInitialize; #if defined(HAVE_WX) && HAVE_WX #include "DSPConfigDlgLLE.h" -#include "Debugger/Debugger.h" // For the DSPDebuggerLLE class +#include "Debugger/DSPDebugWindow.h" // For the DSPDebuggerLLE class extern DSPDebuggerLLE* m_DebuggerFrame; #endif diff --git a/Source/Plugins/Plugin_DSP_LLE/Src/Debugger/DSPRegisterView.cpp b/Source/Plugins/Plugin_DSP_LLE/Src/Debugger/DSPRegisterView.cpp index 3d3c26d557..44e467a0c2 100644 --- a/Source/Plugins/Plugin_DSP_LLE/Src/Debugger/DSPRegisterView.cpp +++ b/Source/Plugins/Plugin_DSP_LLE/Src/Debugger/DSPRegisterView.cpp @@ -15,7 +15,7 @@ // Official SVN repository and contact information can be found at // http://code.google.com/p/dolphin-emu/ -#include "Debugger.h" +#include "DSPDebugWindow.h" #include "DSPRegisterView.h" diff --git a/Source/Plugins/Plugin_DSP_LLE/Src/main.cpp b/Source/Plugins/Plugin_DSP_LLE/Src/main.cpp index 78aa9c17e0..6356e7e506 100644 --- a/Source/Plugins/Plugin_DSP_LLE/Src/main.cpp +++ b/Source/Plugins/Plugin_DSP_LLE/Src/main.cpp @@ -39,7 +39,7 @@ #if defined(HAVE_WX) && HAVE_WX #include "DSPConfigDlgLLE.h" DSPConfigDialogLLE* m_ConfigFrame = NULL; -#include "Debugger/Debugger.h" +#include "Debugger/DSPDebugWindow.h" DSPDebuggerLLE* m_DebuggerFrame = NULL; #endif