_sys_lwmutex_lock: log new case of ESRCH

This commit is contained in:
Eladash
2020-03-23 21:39:57 +02:00
committed by Ivan
parent 2aff36647a
commit eb1de04ca8
+1 -1
View File
@@ -143,7 +143,7 @@ error_code _sys_lwmutex_lock(ppu_thread& ppu, u32 lwmutex_id, u64 timeout)
return false;
});
if (!mutex)
if (!mutex || ppu.gpr[3] == CELL_ESRCH)
{
return CELL_ESRCH;
}