Skip to content

Commit

Permalink
Oopsie
Browse files Browse the repository at this point in the history
  • Loading branch information
TheIndra55 committed Sep 26, 2024
1 parent 1358685 commit 8083f97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/patches/Multicore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ bool(*cdc::JobChainImplWithThreads::s_StartSystem)(int);

bool cdc::JobChainImplWithThreads::StartSystem(int numThreads)
{
if (numThreads > 32)
if (numThreads > 31)
{
numThreads = 32;
numThreads = 31;
}

Hook::GetInstance().GetModule<Log>()->WriteLine("cdc::JobChainImplWithThreads::StartSystem(%d)", numThreads);
Expand Down

0 comments on commit 8083f97

Please sign in to comment.