Fix start index in Check

This commit is contained in:
Matt Nadareski
2025-06-17 17:18:12 -04:00
parent e3beb1ef77
commit 000e7d88a8
2 changed files with 2 additions and 1 deletions

View File

@@ -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)

View File

@@ -76,7 +76,7 @@ namespace MPF.Check
}
// Loop through and process options
startIndex = 2;
startIndex = 1;
opts = LoadFromArguments(args, options, ref startIndex);
}