diff --git a/CHANGELIST.md b/CHANGELIST.md index a70f0411..166c01c3 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -11,6 +11,7 @@ - Enable Check to determine media type automatically - Fix missed test updates - Rename disc info to media info +- Fix start index in Check ### 3.3.2 (2025-06-12) diff --git a/MPF.Check/Program.cs b/MPF.Check/Program.cs index a2087ea7..164aa24f 100644 --- a/MPF.Check/Program.cs +++ b/MPF.Check/Program.cs @@ -76,7 +76,7 @@ namespace MPF.Check } // Loop through and process options - startIndex = 2; + startIndex = 1; opts = LoadFromArguments(args, options, ref startIndex); }