From 2bc4cb4e5809229ebb3738f195df83a6df5d1ebf Mon Sep 17 00:00:00 2001 From: Ofek Date: Sat, 16 Jun 2018 15:11:38 +0300 Subject: [PATCH] Fix sys_spu_thread_connect event --- rpcs3/Emu/Cell/lv2/sys_spu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/lv2/sys_spu.cpp b/rpcs3/Emu/Cell/lv2/sys_spu.cpp index 436d15cd75..0be6ae9aa4 100644 --- a/rpcs3/Emu/Cell/lv2/sys_spu.cpp +++ b/rpcs3/Emu/Cell/lv2/sys_spu.cpp @@ -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;