diff --git a/BinaryObjectScanner/Protection/AlphaROM.cs b/BinaryObjectScanner/Protection/AlphaROM.cs index 7ecc1a52..fd965cda 100644 --- a/BinaryObjectScanner/Protection/AlphaROM.cs +++ b/BinaryObjectScanner/Protection/AlphaROM.cs @@ -71,6 +71,12 @@ namespace BinaryObjectScanner.Protection { if (strs.Any(s => s.Contains("This Game is Japan Only"))) return "Alpha-ROM"; + // Found in "Filechk.exe" in Redump entry 115358. + if (strs.Any(s => s.Contains("AlphaCheck.exe"))) + return "Alpha-ROM"; + // Found in "Uninstall.exe" in Redump entry 115358. + if (strs.Any(s => s.Contains("AlphaCheck.dat"))) + return "Alpha-ROM"; } // Get the overlay data, if it exists