Skip to content

Commit

Permalink
Fix _sys_lwcond_queue_wait
Browse files Browse the repository at this point in the history
Fixup after #5883
  • Loading branch information
Nekotekina committed Aug 17, 2019
1 parent 6535fb0 commit dd86aa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpcs3/Emu/Cell/lv2/sys_lwcond.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ error_code _sys_lwcond_queue_wait(ppu_thread& ppu, u32 lwcond_id, u32 lwmutex_id

if (!mutex)
{
return nullptr;
return;
}

std::lock_guard lock(cond.mutex);
Expand Down

0 comments on commit dd86aa4

Please sign in to comment.