SPU: Minor cleanup of exception in stop_and_signal

This commit is contained in:
Eladash 2020-05-14 18:07:56 +03:00 committed by Ani
parent 54dd9f4eae
commit 61f43d78df
1 changed files with 1 additions and 8 deletions

View File

@ -3226,14 +3226,7 @@ bool spu_thread::stop_and_signal(u32 code)
}
}
if (!ch_out_mbox.get_count())
{
fmt::throw_exception("Unknown STOP code: 0x%x (Out_MBox is empty)" HERE, code);
}
else
{
fmt::throw_exception("Unknown STOP code: 0x%x (Out_MBox=0x%x)" HERE, code, ch_out_mbox.get_value());
}
fmt::throw_exception("Unknown STOP code: 0x%x (Out_MBox=%s)" HERE, code, ch_out_mbox);
}
void spu_thread::halt()