Fixes memory leaks

This commit is contained in:
2020-05-02 20:30:33 +02:00
parent 35388de524
commit 25d72e14f9
2 changed files with 4 additions and 5 deletions

View File

@@ -78,8 +78,7 @@ namespace PkmnLibSharp.Library
}
}
private Forme(IntPtr parent)
: base(parent)
private Forme(IntPtr parent) : base(parent)
{
}

View File

@@ -5,7 +5,7 @@ namespace PkmnLibSharp
public abstract class PointerWrapper : IDisposable
{
internal readonly IntPtr Ptr;
private bool _isDeleted = true;
private bool _isDeleted = false;
protected PointerWrapper(IntPtr ptr)
{