discsystem-continue working on ecm. linear search method done

This commit is contained in:
zeromus 2012-11-17 19:45:34 +00:00
parent 9864c6a192
commit e68d996f94
1 changed files with 5 additions and 0 deletions

View File

@ -270,6 +270,11 @@ namespace BizHawk.DiscSystem
IndexEntry curie = Index[listIndex];
if (curie.LogicalOffset > byte_pos)
{
if (Index[listIndex - 1].LogicalOffset > byte_pos)
{
LastReadIndex = 0;
goto RETRY;
}
break;
}
listIndex++;