1
0
mirror of https://github.com/soarqin/DSP_Mods.git synced 2025-12-08 22:13:30 +08:00

Add more dll searching folders, which satisfies manual installation.

This commit is contained in:
2023-07-12 02:54:30 +08:00
parent bdd10ce0f0
commit ffaf369c09
3 changed files with 15 additions and 9 deletions

View File

@@ -27,10 +27,12 @@ public class LZ4API: WrapperDefines
"lz4wrap.dll", new List<DynDllMapping>
{
"lz4wrap.dll",
"X64/lz4wrap.dll",
"x64/lz4wrap.dll",
"plugins/x64/lz4wrap.dll",
"BepInEx/scripts/x64/lz4wrap.dll",
Path.Combine(root, "X64/lz4wrap.dll"),
Path.Combine(root, "lz4wrap.dll")
Path.Combine(root, "lz4wrap.dll"),
Path.Combine(root, "x64/lz4wrap.dll"),
Path.Combine(root, "plugins/x64/lz4wrap.dll"),
}
},
};