From 59f9938849ab4db7c6cfa765280fe1732ad62971 Mon Sep 17 00:00:00 2001 From: Elad Ashkenazi Date: Fri, 19 May 2023 10:05:37 +0300 Subject: [PATCH] cellSpurs: Fix ready count --- rpcs3/Emu/Cell/Modules/cellSpurs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/Modules/cellSpurs.h b/rpcs3/Emu/Cell/Modules/cellSpurs.h index 51f059d973..b06cbd079f 100644 --- a/rpcs3/Emu/Cell/Modules/cellSpurs.h +++ b/rpcs3/Emu/Cell/Modules/cellSpurs.h @@ -798,7 +798,7 @@ struct alignas(128) CellSpurs atomic_t& readyCount(u32 wid) { - if (wid & 0x10) + if (wid < 0x10) { return wklReadyCount1[wid & 0xf]; }