Have all games share the same thread

This commit is contained in:
MDavid
2022-05-14 13:57:00 +02:00
parent aadea78853
commit 070cf6c577

View File

@@ -69,7 +69,7 @@ internal static class Program {
private static void NerfAll() { private static void NerfAll() {
var i = 0; var i = 0;
foreach (var game in games) { foreach (var game in games) {
game.ProcessorAffinity = new IntPtr(defaultAffinity >> i); game.ProcessorAffinity = new IntPtr(defaultAffinity);
game.PriorityClass = ProcessPriorityClass.Idle; game.PriorityClass = ProcessPriorityClass.Idle;
i++; i++;
} }