From 3c2134474d4a7bdd5c74976bd4aef70dc7b37f4d Mon Sep 17 00:00:00 2001 From: Digote <45742711+Digote@users.noreply.github.com> Date: Mon, 13 Jul 2026 11:18:21 -0300 Subject: [PATCH] [HLE] Avoid duplicate export registration (#100) Co-authored-by: diego --- src/SharpEmu.Core/Runtime/SharpEmuRuntime.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/SharpEmu.Core/Runtime/SharpEmuRuntime.cs b/src/SharpEmu.Core/Runtime/SharpEmuRuntime.cs index d3acc33..e54186b 100644 --- a/src/SharpEmu.Core/Runtime/SharpEmuRuntime.cs +++ b/src/SharpEmu.Core/Runtime/SharpEmuRuntime.cs @@ -83,7 +83,6 @@ public sealed class SharpEmuRuntime : ISharpEmuRuntime ImportTraceLimit = Math.Max(0, options.ImportTraceLimit), }; var moduleManager = new ModuleManager(); - moduleManager.RegisterFromAssembly(typeof(VideoOutExports).Assembly, Generation.Gen4 | Generation.Gen5, Aerolib.Instance); moduleManager.RegisterFromAssembly(typeof(KernelExports).Assembly, Generation.Gen4 | Generation.Gen5, Aerolib.Instance); moduleManager.Freeze();