Dispose MemoryBlock in zwinderbuffer (fixes #2304)
This commit is contained in:
parent
356dfcebdb
commit
1d87bcd29c
|
@ -83,7 +83,7 @@ namespace BizHawk.Client.Common
|
|||
|
||||
public void Dispose()
|
||||
{
|
||||
// this possess no resources to dispose of, but other IRewinder impls might
|
||||
_buffer.Dispose();
|
||||
}
|
||||
|
||||
public void Clear()
|
||||
|
|
|
@ -7,7 +7,7 @@ using BizHawk.Common;
|
|||
|
||||
namespace BizHawk.Client.Common
|
||||
{
|
||||
public class ZwinderBuffer
|
||||
public class ZwinderBuffer : IDisposable
|
||||
{
|
||||
/*
|
||||
Main goals:
|
||||
|
@ -34,6 +34,12 @@ namespace BizHawk.Client.Common
|
|||
_useCompression = settings.UseCompression;
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
_buffer.Dispose();
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Number of states that could be in the state ringbuffer, Mask for the state ringbuffer
|
||||
/// </summary>
|
||||
|
|
Loading…
Reference in New Issue