mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 05:51:27 +12:00
SPU: Allow waiting on LR+TM events (fixup)
This commit is contained in:
parent
7afda26c69
commit
39088e5005
1 changed files with 2 additions and 1 deletions
|
@ -1761,8 +1761,9 @@ s64 SPUThread::get_ch_value(u32 ch)
|
||||||
|
|
||||||
if (mask1 & SPU_EVENT_LR && raddr)
|
if (mask1 & SPU_EVENT_LR && raddr)
|
||||||
{
|
{
|
||||||
if (mask1 != SPU_EVENT_LR)
|
if (mask1 != SPU_EVENT_LR && mask1 != SPU_EVENT_LR + SPU_EVENT_TM)
|
||||||
{
|
{
|
||||||
|
// Combining LR with other flags needs another solution
|
||||||
fmt::throw_exception("Not supported: event mask 0x%x" HERE, mask1);
|
fmt::throw_exception("Not supported: event mask 0x%x" HERE, mask1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue