mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 16:01:42 +12:00
sys_interrupt...
This commit is contained in:
parent
fe26db4d36
commit
68f0393cf3
6 changed files with 116 additions and 103 deletions
|
@ -54,9 +54,12 @@ void spu_int_ctrl_t::set(u64 ints)
|
|||
{
|
||||
LV2_LOCK;
|
||||
|
||||
if (tag && tag->handler)
|
||||
if (tag)
|
||||
{
|
||||
tag->handler->exec();
|
||||
if (auto handler = tag->handler.lock())
|
||||
{
|
||||
handler->exec();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue