mirror of
https://github.com/SabreTools/MPF.git
synced 2026-07-02 17:24:48 +00:00
Correct the condition (#582)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user