mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-09 17:49:45 +00:00
cellSpurs: Fix ready count
This commit is contained in:
parent
8db318094f
commit
59f9938849
1 changed files with 1 additions and 1 deletions
|
@ -798,7 +798,7 @@ struct alignas(128) CellSpurs
|
||||||
|
|
||||||
atomic_t<u8>& readyCount(u32 wid)
|
atomic_t<u8>& readyCount(u32 wid)
|
||||||
{
|
{
|
||||||
if (wid & 0x10)
|
if (wid < 0x10)
|
||||||
{
|
{
|
||||||
return wklReadyCount1[wid & 0xf];
|
return wklReadyCount1[wid & 0xf];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue