1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 02:32:36 +01:00

Savestates/SPU: Minor fixup after fb01ed55

This commit is contained in:
Eladash 2022-09-01 19:15:29 +03:00 committed by Ivan
parent 11a197a387
commit 7bad8f3348

View File

@ -4458,7 +4458,9 @@ bool spu_thread::set_ch_value(u32 ch, u32 value)
if (res == CELL_EAGAIN)
{
// Restore mailboxes state
ch_out_mbox.set_value(data);
ch_in_mbox.try_pop(data);
return false;
}
@ -4529,7 +4531,9 @@ bool spu_thread::set_ch_value(u32 ch, u32 value)
if (res == CELL_EAGAIN)
{
// Restore mailboxes state
ch_out_mbox.set_value(data);
ch_in_mbox.try_pop(data);
return false;
}