mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
Sanitize PDB root name from loaded modules (#1687)
This commit is contained in:
parent
8e5a84792e
commit
3d59fa3da0
10 changed files with 181 additions and 39 deletions
|
|
@ -395,9 +395,15 @@ namespace Dalamud.Injector
|
|||
startInfo.BootShowConsole = args.Contains("--console");
|
||||
startInfo.BootEnableEtw = args.Contains("--etw");
|
||||
startInfo.BootLogPath = GetLogPath(startInfo.LogPath, "dalamud.boot", startInfo.LogName);
|
||||
startInfo.BootEnabledGameFixes = new List<string> {
|
||||
"prevent_devicechange_crashes", "disable_game_openprocess_access_check",
|
||||
"redirect_openprocess", "backup_userdata_save", "prevent_icmphandle_crashes",
|
||||
startInfo.BootEnabledGameFixes = new()
|
||||
{
|
||||
// See: xivfixes.h, xivfixes.cpp
|
||||
"prevent_devicechange_crashes",
|
||||
"disable_game_openprocess_access_check",
|
||||
"redirect_openprocess",
|
||||
"backup_userdata_save",
|
||||
"prevent_icmphandle_crashes",
|
||||
"symbol_load_patches",
|
||||
};
|
||||
startInfo.BootDotnetOpenProcessHookMode = 0;
|
||||
startInfo.BootWaitMessageBox |= args.Contains("--msgbox1") ? 1 : 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue