blah blah dispose blah blah

This commit is contained in:
nattthebear 2020-06-19 20:37:07 -04:00
parent ee963e8d64
commit 129d454a67
1 changed files with 7 additions and 1 deletions

View File

@ -23,9 +23,15 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.NDS
internal CoreComm CoreComm { get; }
private bool _disposed;
public void Dispose()
{
Deinit();
if (!_disposed)
{
Deinit();
_resampler.Dispose();
_disposed = true;
}
}
public bool FrameAdvance(IController controller, bool render, bool renderSound = true)