Remove a pointless cast. Name the DSP thread.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7279 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
1ae59b6dc3
commit
4b8ed4f2c8
|
@ -77,9 +77,10 @@ void DSPLLE::DoState(PointerWrap &p)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Regular thread
|
// Regular thread
|
||||||
void DSPLLE::dsp_thread(DSPLLE *lpParameter)
|
void DSPLLE::dsp_thread(DSPLLE *dsp_lle)
|
||||||
{
|
{
|
||||||
DSPLLE *dsp_lle = (DSPLLE *)lpParameter;
|
Common::SetCurrentThreadName("DSP thread");
|
||||||
|
|
||||||
while (dsp_lle->m_bIsRunning)
|
while (dsp_lle->m_bIsRunning)
|
||||||
{
|
{
|
||||||
int cycles = (int)dsp_lle->m_cycle_count;
|
int cycles = (int)dsp_lle->m_cycle_count;
|
||||||
|
|
Loading…
Reference in New Issue