From aaff4bad1b3d8ab378580b589286afe23e84001c Mon Sep 17 00:00:00 2001 From: TheRogueArchivist <24215969+TheRogueArchivist@users.noreply.github.com> Date: Fri, 7 Jun 2024 11:11:24 -0600 Subject: [PATCH] Add new Alpha-ROM checks (#306) --- BinaryObjectScanner/Protection/AlphaROM.cs | 6 ++++++ 1 file changed, 6 insertions(+) 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