_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

View file

@ -143,7 +143,7 @@ error_code _sys_lwmutex_lock(ppu_thread& ppu, u32 lwmutex_id, u64 timeout)
return false; return false;
}); });
if (!mutex) if (!mutex || ppu.gpr[3] == CELL_ESRCH)
{ {
return CELL_ESRCH; return CELL_ESRCH;
} }