Skip to content

Commit

Permalink
Fix verification failure on Emu.Stop() at sys_cond_wait
Browse files Browse the repository at this point in the history
  • Loading branch information
elad335 committed Oct 5, 2019
1 parent dd086e5 commit e6267eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpcs3/Emu/Cell/lv2/sys_cond.cpp
Expand Up @@ -259,7 +259,7 @@ error_code sys_cond_wait(ppu_thread& ppu, u32 cond_id, u64 timeout)
// Wait for rescheduling
if (ppu.check_state())
{
break;
continue;
}

std::lock_guard lock(cond->mutex->mutex);
Expand Down

0 comments on commit e6267eb

Please sign in to comment.