Skip to content

Commit deb3317

Browse files
authored
Update AsiLoaderDeployer.cs (#415)
Changed default priority/order as version.dll seemingly tends to cause issues in some games (such as bringing up the crash handler) while the others work on most games without issues. Making version.dll the last fallback seems the sensible choice here.
1 parent 2223862 commit deb3317

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/Reloaded.Mod.Launcher.Lib/Utility/AsiLoaderDeployer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,9 +223,9 @@ private void ExtractAsiLoader(string filePath, bool is64bit)
223223
{
224224
"winmm.dll",
225225
"wininet.dll",
226-
"version.dll",
227226
"dsound.dll",
228-
"dinput8.dll"
227+
"dinput8.dll",
228+
"version.dll"
229229
};
230230

231231
private static readonly string[] AsiCommonDirectories =

0 commit comments

Comments
 (0)