a fix to the fix of last commit

This commit is contained in:
adelikat 2014-10-02 23:50:50 +00:00
parent d0970c5ba4
commit fda36d349d
2 changed files with 9 additions and 2 deletions

View File

@ -326,9 +326,9 @@ namespace BizHawk.Client.Common
public void ClearGreenzone()
{
if (StateManager.StateCount > 0)
if (StateManager.Any())
{
StateManager.Clear();
StateManager.ClearGreenzone();
Changes = true;
}
}

View File

@ -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())
{