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"),
}
},
};

View File

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

View File

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