mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-11 09:18:40 +12:00
Fix max SPURS threads regression
This commit is contained in:
parent
727d783959
commit
f02b4801b2
1 changed files with 1 additions and 1 deletions
|
@ -384,7 +384,7 @@ error_code sys_spu_thread_initialize(ppu_thread& ppu, vm::ptr<u32> thread, u32 g
|
||||||
{
|
{
|
||||||
if (g_cfg.core.max_spurs_threads < 6 && group->max_num > 0u + g_cfg.core.max_spurs_threads)
|
if (g_cfg.core.max_spurs_threads < 6 && group->max_num > 0u + g_cfg.core.max_spurs_threads)
|
||||||
{
|
{
|
||||||
if (group->name.starts_with("CellSpursKernelGroup"))
|
if (group->name.ends_with("CellSpursKernelGroup"))
|
||||||
{
|
{
|
||||||
// Hack: don't run more SPURS threads than specified.
|
// Hack: don't run more SPURS threads than specified.
|
||||||
group->max_run = g_cfg.core.max_spurs_threads;
|
group->max_run = g_cfg.core.max_spurs_threads;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue