dispose of TasStateManager
This commit is contained in:
parent
41109d6fc2
commit
0109386049
|
@ -277,6 +277,11 @@ namespace BizHawk.Client.Common
|
|||
_modeChangedCallback();
|
||||
}
|
||||
|
||||
if (Movie is IDisposable d)
|
||||
{
|
||||
d.Dispose();
|
||||
}
|
||||
|
||||
Movie = null;
|
||||
}
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ using BizHawk.Emulation.Common;
|
|||
|
||||
namespace BizHawk.Client.Common
|
||||
{
|
||||
public interface ITasMovie : IMovie, INotifyPropertyChanged
|
||||
public interface ITasMovie : IMovie, INotifyPropertyChanged, IDisposable
|
||||
{
|
||||
bool BindMarkersToInput { get; set; }
|
||||
bool LastPositionStable { get; set; }
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
using System.Collections.Generic;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using BizHawk.Emulation.Common;
|
||||
|
||||
namespace BizHawk.Client.Common
|
||||
{
|
||||
public interface IStateManager
|
||||
public interface IStateManager : IDisposable
|
||||
{
|
||||
/// <summary>
|
||||
/// Retrieves the savestate for the given frame,
|
||||
|
|
|
@ -350,5 +350,11 @@ namespace BizHawk.Client.Common
|
|||
return Markers.Any(m => m.Frame - 1 == frame)
|
||||
|| Branches.Any(b => b.Frame == frame); // Branches should already be in the reserved list, but it doesn't hurt to check
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
TasStateManager?.Dispose();
|
||||
TasStateManager = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue