ZwinderStateManager - speedup and simply the Last property using StateCache

This commit is contained in:
adelikat 2020-08-23 17:56:01 -05:00
parent 1b0139ebc3
commit 16771bb6bf
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ namespace BizHawk.Client.Common
.OrderByDescending(s => s.Frame);
}
public int Last => AllStates().First().Frame;
public int Last => StateCache.Max();
private int LastRing => CurrentAndRecentStates().FirstOrDefault()?.Frame ?? 0;