You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
}elseif(GamePath.CurrentGameis>=Game.YakuzaKiwami2 and not Game.LikeADragonGaiden){
219
-
// Lost Judgment (and Judgment post update 1) does not like Ultimate ASI Loader, so instead we use a custom build of DllSpoofer (https://github.com/Kazurin-775/DllSpoofer)
220
-
if(File.Exists(Constants.DINPUT8DLL)){
221
-
Log.Warning($"Game specific patch: Deleting {Constants.DINPUT8DLL} because it causes crashes with Judgment games...");
222
-
223
-
// Remove dinput8.dll
224
-
File.Delete(Constants.DINPUT8DLL);
225
-
}
226
-
227
-
if(!File.Exists(Constants.WINMMDLL)){
228
-
if(File.Exists(Constants.WINMMLJ)){
229
-
Log.Warning($"Game specific patch: Enabling {Constants.WINMMDLL} by renaming {Constants.WINMMLJ} to fix Judgment games crashes...");
230
-
231
-
// Rename dinput8.dll to version.dll to prevent the game from crashing
232
-
File.Move(Constants.WINMMLJ,Constants.WINMMDLL);
233
-
}else{
234
-
Log.Error($"WARNING: {Constants.WINMMLJ} was not found. Judgment games will NOT load mods without this file. Please redownload Shin Ryu Mod Manager.");
235
-
}
236
-
}
237
-
}
238
-
}
239
202
240
203
// Read ini (again) to check if we should try importing the old load order file
0 commit comments