From 070cf6c5778ecdd5a5f1219894772f754b333675 Mon Sep 17 00:00:00 2001 From: MDavid Date: Sat, 14 May 2022 13:57:00 +0200 Subject: [PATCH] Have all games share the same thread --- DD2Switcher/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DD2Switcher/Program.cs b/DD2Switcher/Program.cs index fa073f2..88fc8c9 100644 --- a/DD2Switcher/Program.cs +++ b/DD2Switcher/Program.cs @@ -69,7 +69,7 @@ internal static class Program { private static void NerfAll() { var i = 0; foreach (var game in games) { - game.ProcessorAffinity = new IntPtr(defaultAffinity >> i); + game.ProcessorAffinity = new IntPtr(defaultAffinity); game.PriorityClass = ProcessPriorityClass.Idle; i++; }