Add Mattel HyperScan detection (fixes #661)

This commit is contained in:
Matt Nadareski
2024-02-26 13:17:46 -05:00
parent 963acc3336
commit 251b3754e4
2 changed files with 7 additions and 0 deletions

View File

@@ -40,6 +40,7 @@
- Change link to WIP builds in README
- Show hashes in readonly data
- Update to BinaryObjectScanner 3.1.0
- Add Mattel HyperScan detection
### 3.1.1 (2024-02-20)

View File

@@ -331,6 +331,12 @@ namespace MPF.Core.Data
return RedumpSystem.CommodoreAmigaCD32;
}
// Mattel HyperScan -- TODO: May need case-insensitivity added
if (File.Exists(Path.Combine(this.Name, "hyper.exe")))
{
return RedumpSystem.MattelHyperScan;
}
// Mattel Fisher-Price iXL
#if NET20 || NET35
if (File.Exists(Path.Combine(Path.Combine(this.Name, "iXL"), "iXLUpdater.exe")))