Reverts pull request #2362, fixes issue 8542.

This commit is contained in:
joewestcott 2015-05-06 05:36:37 +01:00
parent a7e2425ffb
commit 72956d59c8
1 changed files with 1 additions and 1 deletions

View File

@ -150,9 +150,9 @@ bool CCPU::PauseAndLock(bool doLock, bool unpauseOnUnlock)
if (doLock) if (doLock)
{ {
// we can't use EnableStepping, that would causes deadlocks with both audio and video // we can't use EnableStepping, that would causes deadlocks with both audio and video
PowerPC::Pause();
if (!Core::IsCPUThread()) if (!Core::IsCPUThread())
m_csCpuOccupied.lock(); m_csCpuOccupied.lock();
PowerPC::Pause();
} }
else else
{ {