fix a bug in TasLagLog, not sure how it was working

This commit is contained in:
adelikat 2019-06-28 20:26:18 -05:00
parent 062ec8cb97
commit 6b249c648d
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ namespace BizHawk.Client.Common
var frames = _lagLog.Keys.Where(k => k > frame).ToList();
foreach (var f in frames)
{
RemoveLagEntry(frame);
RemoveLagEntry(f);
}
return frames.Any();