From 8083f978de18cf6918b92317ea1139a2c3bad7a3 Mon Sep 17 00:00:00 2001 From: TheIndra55 Date: Thu, 26 Sep 2024 21:32:00 +0200 Subject: [PATCH] Oopsie --- src/modules/patches/Multicore.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/patches/Multicore.cpp b/src/modules/patches/Multicore.cpp index 30e7564..ba9519a 100644 --- a/src/modules/patches/Multicore.cpp +++ b/src/modules/patches/Multicore.cpp @@ -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()->WriteLine("cdc::JobChainImplWithThreads::StartSystem(%d)", numThreads);