a fix to the fix of last commit
This commit is contained in:
parent
d0970c5ba4
commit
fda36d349d
|
@ -326,9 +326,9 @@ namespace BizHawk.Client.Common
|
|||
|
||||
public void ClearGreenzone()
|
||||
{
|
||||
if (StateManager.StateCount > 0)
|
||||
if (StateManager.Any())
|
||||
{
|
||||
StateManager.Clear();
|
||||
StateManager.ClearGreenzone();
|
||||
Changes = true;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -136,7 +136,14 @@ namespace BizHawk.Client.Common
|
|||
/// <summary>
|
||||
/// Clears all state information
|
||||
/// </summary>
|
||||
///
|
||||
public void Clear()
|
||||
{
|
||||
States.Clear();
|
||||
Used = 0;
|
||||
}
|
||||
|
||||
public void ClearGreenzone()
|
||||
{
|
||||
if (States.Any())
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue