From 8c0dff6552af55bec55a3cdd288cf56124ea60c3 Mon Sep 17 00:00:00 2001 From: fuzzball Date: Mon, 16 Oct 2023 10:51:23 +0900 Subject: [PATCH] Correct the condition (#582) --- MPF.Core/Modules/DiscImageCreator/Parameters.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MPF.Core/Modules/DiscImageCreator/Parameters.cs b/MPF.Core/Modules/DiscImageCreator/Parameters.cs index d6350fbe..bc3fe647 100644 --- a/MPF.Core/Modules/DiscImageCreator/Parameters.cs +++ b/MPF.Core/Modules/DiscImageCreator/Parameters.cs @@ -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;