This commit is contained in:
adelikat 2019-06-15 15:51:56 -05:00
parent d4432db7f9
commit c87c1d8328
1 changed files with 1 additions and 6 deletions

View File

@ -21,11 +21,6 @@ namespace BizHawk.Client.Common
public Action<int> InvalidateCallback { get; set; }
private void CallInvalidateCallback(int index)
{
InvalidateCallback?.Invoke(index);
}
private SortedList<int, StateManagerState> _states = new SortedList<int, StateManagerState>();
private bool _isMountedForWrite;
@ -213,7 +208,7 @@ namespace BizHawk.Client.Common
Remove(state.Key);
}
CallInvalidateCallback(frame);
InvalidateCallback?.Invoke(frame);
}
return anyInvalidated;