From 5d6dbc18e3f1e95970d0d973b13724095539b0c3 Mon Sep 17 00:00:00 2001 From: PJB3005 Date: Sat, 31 Jan 2026 22:21:36 +0100 Subject: [PATCH] Remove swnfd from ClientDllMap --- Robust.Client/Utility/ClientDllMap.cs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/Robust.Client/Utility/ClientDllMap.cs b/Robust.Client/Utility/ClientDllMap.cs index 50bfaaf98..f0ef49699 100644 --- a/Robust.Client/Utility/ClientDllMap.cs +++ b/Robust.Client/Utility/ClientDllMap.cs @@ -14,15 +14,6 @@ namespace Robust.Client.Utility { NativeLibrary.SetDllImportResolver(typeof(ClientDllMap).Assembly, (name, assembly, path) => { - if (name == "swnfd.dll") - { -#if LINUX || FREEBSD - return NativeLibrary.Load("libswnfd.so", assembly, path); -#elif MACOS - return NativeLibrary.Load("libswnfd.dylib", assembly, path); -#endif - } - if (name == "libEGL.dll") { #if LINUX || FREEBSD