mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-30 04:13:40 +01:00
add more exception handler options to dev menu
This commit is contained in:
parent
be965f8dd1
commit
df65d59f8b
2 changed files with 54 additions and 12 deletions
|
|
@ -863,9 +863,19 @@ internal class DalamudInterface : IDisposable, IServiceType
|
|||
|
||||
if (ImGui.BeginMenu("Game"))
|
||||
{
|
||||
if (ImGui.MenuItem("Replace ExceptionHandler"))
|
||||
if (ImGui.MenuItem("Use in-game default ExceptionHandler"))
|
||||
{
|
||||
this.dalamud.ReplaceExceptionHandler();
|
||||
this.dalamud.UseDefaultExceptionHandler();
|
||||
}
|
||||
|
||||
if (ImGui.MenuItem("Use in-game debug ExceptionHandler"))
|
||||
{
|
||||
this.dalamud.UseDebugExceptionHandler();
|
||||
}
|
||||
|
||||
if (ImGui.MenuItem("Disable in-game ExceptionHandler"))
|
||||
{
|
||||
this.dalamud.UseNoExceptionHandler();
|
||||
}
|
||||
|
||||
ImGui.EndMenu();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue