mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 19:45:20 +00:00
Fix sys_spu_thread_connect event
This commit is contained in:
parent
b2a4e759fc
commit
2bc4cb4e58
1 changed files with 1 additions and 1 deletions
|
@ -1024,7 +1024,7 @@ error_code sys_spu_thread_connect_event(u32 id, u32 eq, u32 et, u8 spup)
|
|||
return CELL_ESRCH;
|
||||
}
|
||||
|
||||
if (et != SYS_SPU_THREAD_EVENT_USER || spup > 63 || queue->type != SYS_PPU_QUEUE)
|
||||
if (et != SYS_SPU_THREAD_EVENT_USER || spup > 63)
|
||||
{
|
||||
sys_spu.error("sys_spu_thread_connect_event(): invalid arguments (et=%d, spup=%d, queue->type=%d)", et, spup, queue->type);
|
||||
return CELL_EINVAL;
|
||||
|
|
Loading…
Add table
Reference in a new issue