From 438017c2b34a80402cee1d587c6ea2f89ec13aeb Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Sat, 16 Jan 2021 19:18:12 +0100 Subject: [PATCH] fix: increase unload delay --- Dalamud/Interface/InterfaceManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Interface/InterfaceManager.cs b/Dalamud/Interface/InterfaceManager.cs index a36328f27..050fac255 100644 --- a/Dalamud/Interface/InterfaceManager.cs +++ b/Dalamud/Interface/InterfaceManager.cs @@ -155,7 +155,7 @@ namespace Dalamud.Interface // calls to PresentDetour have finished (and Disable means no new ones will start), before we try to cleanup // So... not great, but much better than constantly crashing on unload this.Disable(); - System.Threading.Thread.Sleep(100); + System.Threading.Thread.Sleep(500); this.scene?.Dispose(); this.presentHook.Dispose();