mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 07:09:48 -06:00
Signal DSP thread after unlocking DSP mutex
This commit is contained in:
@ -336,8 +336,16 @@ u32 DSPLLE::DSP_UpdateRate()
|
|||||||
void DSPLLE::PauseAndLock(bool do_lock, bool unpause_on_unlock)
|
void DSPLLE::PauseAndLock(bool do_lock, bool unpause_on_unlock)
|
||||||
{
|
{
|
||||||
if (do_lock)
|
if (do_lock)
|
||||||
|
{
|
||||||
m_dsp_thread_mutex.lock();
|
m_dsp_thread_mutex.lock();
|
||||||
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
m_dsp_thread_mutex.unlock();
|
m_dsp_thread_mutex.unlock();
|
||||||
|
|
||||||
|
// Signal the DSP thread so it can perform any outstanding work now (if any)
|
||||||
|
s_ppc_event.Wait();
|
||||||
|
s_dsp_event.Set();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} // namespace DSP::LLE
|
} // namespace DSP::LLE
|
||||||
|
Reference in New Issue
Block a user