fix: Attempted to evict state 0, and attempted to modify collection while enumerating

This commit is contained in:
SuuperW 2020-12-25 09:59:32 -06:00
parent a1253407e7
commit a928d1887f
1 changed files with 8 additions and 2 deletions

View File

@ -100,16 +100,22 @@ namespace BizHawk.Client.Common
lastReserved = f;
}
foreach (int f in framesToRemove)
EvictReserved(f);
{
if (f != 0)
EvictReserved(f);
}
}
}
else
{
List<int> framesToRemove = new List<int>();
foreach (int f in _reserved.Keys)
{
if (f != 0 && !_reserveCallback(f))
EvictReserved(f);
framesToRemove.Add(f);
}
foreach (int f in framesToRemove)
EvictReserved(f);
}
_ancientInterval = settings.AncientStateInterval;