mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 18:58:36 +12:00
Fix verification failure on Emu.Stop() at sys_cond_wait
This commit is contained in:
parent
af417c93d0
commit
0f3c5f9e5a
1 changed files with 1 additions and 1 deletions
|
@ -259,7 +259,7 @@ error_code sys_cond_wait(ppu_thread& ppu, u32 cond_id, u64 timeout)
|
||||||
// Wait for rescheduling
|
// Wait for rescheduling
|
||||||
if (ppu.check_state())
|
if (ppu.check_state())
|
||||||
{
|
{
|
||||||
break;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::lock_guard lock(cond->mutex->mutex);
|
std::lock_guard lock(cond->mutex->mutex);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue