Use MCN check for Sega header, not CVD (fixes #297)

This commit is contained in:
Matt Nadareski
2021-07-27 22:06:26 -07:00
parent 97f9a73fc1
commit bfead10d87

View File

@@ -3061,7 +3061,7 @@ namespace MPF.DiscImageCreator
|| line.StartsWith("========== FULL TOC (Binary)"))
{
// Seek to unscrambled data
while (!(line = sr.ReadLine()).StartsWith("========== Check Volume Descriptor ==========")) ;
while (!(line = sr.ReadLine()).Contains("Check MCN and/or ISRC")) ;
// Read the next line so the search goes properly
line = sr.ReadLine();