diff --git a/BizHawk.MultiClient/movie/MovieLog.cs b/BizHawk.MultiClient/movie/MovieLog.cs index 38288e8f67..d3bda9c978 100644 --- a/BizHawk.MultiClient/movie/MovieLog.cs +++ b/BizHawk.MultiClient/movie/MovieLog.cs @@ -207,7 +207,7 @@ namespace BizHawk.MultiClient public bool FrameLagged(int frame) { - if (frame >= StateFirstIndex && frame <= StateLastIndex) + if (frame >= StateFirstIndex && frame <= StateLastIndex && frame <= StateRecords.Count) { return StateRecords[frame].Lagged; }