fix: increase unload delay

This commit is contained in:
goat 2021-01-16 19:18:12 +01:00
parent dde7743e73
commit 438017c2b3

View file

@ -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();