More docs, cleanup and some fixes

(ector I think you'll want to review DSPInterpreter.cpp changes)


git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2917 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee
2009-04-07 17:10:50 +00:00
parent d2b11faa05
commit 8e87735afa
3 changed files with 81 additions and 76 deletions

View File

@ -185,27 +185,6 @@ THREAD_RETURN dsp_thread(void* lpParameter)
return 0;
}
// Debug thread
THREAD_RETURN dsp_thread_debug(void* lpParameter)
{
#if defined(HAVE_WX) && HAVE_WX
while (bIsRunning)
{
// Logging(); // logging
if (m_DebuggerFrame->CanDoStep())
{
gdsp_runx(1);
}
else
{
SLEEP(100);
}
}
#endif
return NULL;
}
void DSP_DebugBreak()
{
#if defined(HAVE_WX) && HAVE_WX
@ -369,10 +348,6 @@ void DSP_SendAIBuffer(unsigned int address, int sample_rate)
{
samples[i] = Memory_Read_U16(address + i * 2);
}
// Write the audio to a file
//if (log_ai)
// g_wave_writer.AddStereoSamples(samples, 8);
}
soundStream->GetMixer()->PushSamples(samples, 32 / 4, sample_rate);
}