mirror of
https://github.com/SabreTools/MPF.git
synced 2026-04-05 22:01:16 +00:00
Fix XGD3 SS validity check (#955)
This commit is contained in:
@@ -67,6 +67,7 @@
|
||||
- Cleanup of processing code
|
||||
- Options helper cleanup
|
||||
- Miscellaneous formatting cleanup
|
||||
- Fix XGD3 SS validity check
|
||||
|
||||
### 3.6.0 (2025-11-28)
|
||||
|
||||
|
||||
@@ -1108,7 +1108,7 @@ namespace MPF.Processors
|
||||
// Determine if XGD3 SS is invalid SSv1 (Original Kreon) or valid SSv2 (0800 / Custom Kreon)
|
||||
if (xgdType == 3)
|
||||
{
|
||||
if (Array.FindIndex(ss, 32, 72, x => x != 0) >= 0)
|
||||
if (Array.FindIndex(ss, 32, 72, x => x != 0) == -1)
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user