wip: load other shared library formats (#1790)

This commit is contained in:
Ash
2026-05-24 23:23:38 +02:00
committed by GitHub
parent 40f49a8615
commit 0692fa5423
+1 -1
View File
@@ -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;
}