Forgot a couple of things.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7008 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Glenn Rice 2011-01-31 04:44:08 +00:00
parent b6251ba674
commit bbe8675923
4 changed files with 10 additions and 32 deletions

View File

@ -24,15 +24,10 @@
#include "../../ConfigManager.h"
#include "../../PowerPC/PowerPC.h"
/*
ECTORTODO
#if defined(HAVE_WX) && HAVE_WX
#include "Debugger/DSPDebugWindow.h" // For the DSPDebuggerLLE class
#include "DSPDebugWindow.h" // For the DSPDebuggerLLE class
extern DSPDebuggerLLE* m_DebuggerFrame;
#endif
*/
// The user of the DSPCore library must supply a few functions so that the
// emulation core can access the environment it runs in. If the emulation
@ -103,20 +98,19 @@ u32 DSPHost_CodeLoaded(const u8 *ptr, int size)
// Always add the ROM.
DSPSymbols::AutoDisassembly(0x8000, 0x9000);
/* ECTORTODO
#if defined(HAVE_WX) && HAVE_WX
if (m_DebuggerFrame)
m_DebuggerFrame->Refresh();
#endif
*/
return ector_crc;
}
void DSPHost_UpdateDebugger()
{
/* ECTORTODO
#if defined(HAVE_WX) && HAVE_WX
if (m_DebuggerFrame)
m_DebuggerFrame->Refresh();
#endif */
#endif
}

View File

@ -31,6 +31,10 @@
#include "DSP/disassemble.h"
#include "DSPSymbols.h"
#if defined HAVE_WX && HAVE_WX
#include "DSPDebugWindow.h"
#endif
#include "AudioCommon.h"
#include "Mixer.h"
@ -77,19 +81,6 @@ void DSPLLE::DoState(PointerWrap &p)
p.Do(m_cycle_count);
}
/* ECTORTODO
void *DllDebugger(void *_hParent, bool Show)
{
#if defined(HAVE_WX) && HAVE_WX
m_DebuggerFrame = new DSPDebuggerLLE((wxWindow *)_hParent);
return (void *)m_DebuggerFrame;
#else
return NULL;
#endif
}
*/
// Regular thread
void DSPLLE::dsp_thread(DSPLLE *lpParameter)
{
@ -109,7 +100,6 @@ void DSPLLE::dsp_thread(DSPLLE *lpParameter)
}
}
/* ECTORTODO
void DSPLLE::DSP_DebugBreak()
{
#if defined(HAVE_WX) && HAVE_WX
@ -117,7 +107,6 @@ void DSPLLE::DSP_DebugBreak()
// m_DebuggerFrame->DebugBreak();
#endif
}
*/
void DSPLLE::Initialize(void *hWnd, bool bWii, bool bDSPThread)
{
@ -157,17 +146,12 @@ void DSPLLE::Initialize(void *hWnd, bool bWii, bool bDSPThread)
InitInstructionTable();
if (m_bDSPThread)
{
// m_hDSPThread = new Common::Thread(dsp_thread, (void *)this);
m_hDSPThread = std::thread(dsp_thread, this);
}
/*
ECTORTODO
#if defined(HAVE_WX) && HAVE_WX
if (m_DebuggerFrame)
m_DebuggerFrame->Refresh();
#endif
*/
}
void DSPLLE::DSP_StopSoundStream()

View File

@ -43,6 +43,7 @@ public:
virtual void DSP_Update(int cycles);
virtual void DSP_StopSoundStream();
virtual void DSP_ClearAudioBuffer(bool mute);
void DSP_DebugBreak();
private:
static void dsp_thread(DSPLLE* lpParameter);

View File

@ -516,7 +516,6 @@ void CCodeWindow::ToggleJitWindow(bool bShow)
void CCodeWindow::ToggleSoundWindow(bool bShow)
{
// TODO: Resurrect DSP debugger window.
GetMenuBar()->FindItem(IDM_SOUNDWINDOW)->Check(bShow);
if (bShow)
{