Fix bug in `PlayMovie.PreHighlightMovie` heuristics
for the record, the bug was that it had `_movieList[indices[0]]` in the loop instead of `_movieList[indices[i]]`
This commit is contained in:
parent
3f2a07e582
commit
9211007a18
|
@ -212,27 +212,11 @@ namespace BizHawk.Client.EmuHawk
|
||||||
HighlightMovie(tas[0]);
|
HighlightMovie(tas[0]);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (tas.Count > 1)
|
|
||||||
{
|
|
||||||
indices = new List<int>(tas);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Final tie breaker - Last used file
|
// Final tie breaker - Last used file
|
||||||
var file = new FileInfo(_movieList[indices[0]].Filename);
|
HighlightMovie(tas.Select(movieIndex => (Index: movieIndex, Timestamp: new FileInfo(_movieList[movieIndex].Filename).LastAccessTime))
|
||||||
var time = file.LastAccessTime;
|
.OrderByDescending(static tuple => tuple.Timestamp)
|
||||||
var mostRecent = indices[0];
|
.First().Index);
|
||||||
for (var i = 1; i < indices.Count; i++)
|
|
||||||
{
|
|
||||||
file = new FileInfo(_movieList[indices[0]].Filename);
|
|
||||||
if (file.LastAccessTime > time)
|
|
||||||
{
|
|
||||||
time = file.LastAccessTime;
|
|
||||||
mostRecent = indices[i];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
HighlightMovie(mostRecent);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void HighlightMovie(int index)
|
private void HighlightMovie(int index)
|
||||||
|
|
Loading…
Reference in New Issue