mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-22 04:25:19 +00:00
Report fixup
This commit is contained in:
parent
ec943b38a2
commit
cb1f30e9d2
1 changed files with 7 additions and 11 deletions
|
@ -511,20 +511,16 @@ s32 error_code::error_report(const fmt_type_info* sup, u64 arg)
|
|||
// Filter some annoying reports
|
||||
switch (arg)
|
||||
{
|
||||
case CELL_ESRCH:
|
||||
case CELL_EDEADLK:
|
||||
{
|
||||
if (ppu.m_name == "_cellsurMixerMain" && std::memcmp(ppu.last_function, "sys_mutex_lock", 15) == 0)
|
||||
if (ppu.m_name == "_cellsurMixerMain" || ppu.m_name == "_sys_MixerChStripMain")
|
||||
{
|
||||
level = logs::level::trace;
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
case CELL_ESRCH:
|
||||
{
|
||||
if (ppu.m_name == "_sys_MixerChStripMain" && std::memcmp(ppu.last_function, "sys_lwmutex_lock", 17) == 0)
|
||||
{
|
||||
level = logs::level::trace;
|
||||
if (std::memcmp(ppu.last_function, "sys_mutex_lock", 15) == 0 ||
|
||||
std::memcmp(ppu.last_function, "sys_lwmutex_lock", 17) == 0)
|
||||
{
|
||||
level = logs::level::trace;
|
||||
}
|
||||
}
|
||||
|
||||
break;
|
||||
|
|
Loading…
Add table
Reference in a new issue