mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Solve APPCRASH issue
This commit is contained in:
parent
505b32ebd2
commit
5261bb2777
1 changed files with 3 additions and 1 deletions
|
|
@ -166,7 +166,9 @@ namespace Dalamud.Hooking
|
|||
if (this.isCoreHook)
|
||||
{
|
||||
this.Disable();
|
||||
this.coreHookImpl.Dispose();
|
||||
// Disposing CoreHook causes an APPCRASH on game exit.
|
||||
// We already overwrite the original hook code, so there shouldn't be any real risk with not disposing here.
|
||||
// this.coreHookImpl.Dispose();
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue