From bfead10d8784f70067196dbd4bb738bc8c408a7e Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Tue, 27 Jul 2021 22:06:26 -0700 Subject: [PATCH] Use MCN check for Sega header, not CVD (fixes #297) --- MPF.Library/DiscImageCreator/Parameters.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MPF.Library/DiscImageCreator/Parameters.cs b/MPF.Library/DiscImageCreator/Parameters.cs index a09838e3..81a31d47 100644 --- a/MPF.Library/DiscImageCreator/Parameters.cs +++ b/MPF.Library/DiscImageCreator/Parameters.cs @@ -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();