discsystem-continue working on ecm. linear search method done
This commit is contained in:
parent
9864c6a192
commit
e68d996f94
|
@ -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++;
|
||||
|
|
Loading…
Reference in New Issue