Correct the condition (#582)

This commit is contained in:
fuzzball
2023-10-16 10:51:23 +09:00
committed by GitHub
parent 43b230c84a
commit 8c0dff6552

View File

@@ -3753,7 +3753,7 @@ namespace MPF.Core.Modules.DiscImageCreator
return null;
// Make sure we're in the area
if (line.StartsWith("========== LBA") == true)
if (line.StartsWith("========== LBA") == false)
while ((line = sr.ReadLine())?.StartsWith("========== LBA") == false) ;
if (line == null)
return null;