replace nonfunctional managed asserts with proper imgui-handled assert mechanism

This commit is contained in:
goat 2024-12-25 12:46:54 +01:00
parent 8773d3b873
commit 12bf2f4478
12 changed files with 238 additions and 207 deletions

View file

@ -222,6 +222,10 @@ public class DevPluginsSettingsEntry : SettingsEntry
this.devPluginLocationsChanged = true;
this.devPluginTempLocation = string.Empty;
}
var config = Service<DalamudConfiguration>.Get();
if (!config.ImGuiAssertsEnabledAtStartup.HasValue)
config.ImGuiAssertsEnabledAtStartup = true;
}
public override void PostDraw()