I'm convinced this is a worthless check, -1 was never being passed in, and shouldn't be

This commit is contained in:
adelikat 2019-06-15 16:49:08 -05:00
parent 3ec2ec325a
commit ea55217c3f
1 changed files with 0 additions and 5 deletions

View File

@ -287,11 +287,6 @@ namespace BizHawk.Client.Common
private bool IsMarkerState(int frame)
{
if (frame == -1)
{
return false;
}
return _movie.Markers.IsMarker(frame + 1);
}