From 0692fa542360e68b457515ad6733e112402b8ade Mon Sep 17 00:00:00 2001 From: Ash Date: Sun, 24 May 2026 23:23:38 +0200 Subject: [PATCH] wip: load other shared library formats (#1790) --- src/dusk/modding/mod_loader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dusk/modding/mod_loader.cpp b/src/dusk/modding/mod_loader.cpp index b5ba972eaa..1f81978176 100644 --- a/src/dusk/modding/mod_loader.cpp +++ b/src/dusk/modding/mod_loader.cpp @@ -351,7 +351,7 @@ static std::string_view getFileNameWithoutExtension(const std::string_view fileN static DllLocateResult LocateDllInBundle(ModBundle& bundle) { std::string dllEntry, dllFallback; for (const auto name : bundle.getFileNames()) { - if (!name.ends_with(".dll"sv)) { + if (!name.ends_with(".dll"sv) && !name.ends_with(".dylib"sv) && !name.ends_with(".so"sv)) { continue; }