From 24bd38ab5b4b40a8f5828f6ec3433d06410079e5 Mon Sep 17 00:00:00 2001 From: ParantezTech Date: Sat, 18 Jul 2026 23:01:39 +0300 Subject: [PATCH] [runtime] restore default GC mode --- src/SharpEmu.CLI/Program.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/SharpEmu.CLI/Program.cs b/src/SharpEmu.CLI/Program.cs index 3dc2fe54..97108573 100644 --- a/src/SharpEmu.CLI/Program.cs +++ b/src/SharpEmu.CLI/Program.cs @@ -45,11 +45,6 @@ internal static partial class Program [STAThread] private static int Main(string[] args) { - // Avoid blocking full collections while guest and render threads are - // running, and establish the GC mode before the runtime reserves the - // fixed guest address-space window. - System.Runtime.GCSettings.LatencyMode = System.Runtime.GCLatencyMode.SustainedLowLatency; - try { return Run(args);