From 010e477ea4c047c6384a0ad6f11127450b780d06 Mon Sep 17 00:00:00 2001 From: pas2704 Date: Sun, 3 Nov 2024 10:42:38 -0500 Subject: [PATCH] Change thread count to max threads --- CringeLauncher/Utils/ThreadPoolScheduler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CringeLauncher/Utils/ThreadPoolScheduler.cs b/CringeLauncher/Utils/ThreadPoolScheduler.cs index 0a641af..cd7c7fc 100644 --- a/CringeLauncher/Utils/ThreadPoolScheduler.cs +++ b/CringeLauncher/Utils/ThreadPoolScheduler.cs @@ -31,7 +31,7 @@ public class ThreadPoolScheduler : IWorkScheduler { } - public int ThreadCount { get; } = ThreadPool.ThreadCount; + public int ThreadCount { get; } = 1024; } [HarmonyPatch]