From 69a55f5b47d69d62e27b6847b130790d124cf4f7 Mon Sep 17 00:00:00 2001 From: HeroponRikiBestest <50224630+HeroponRikiBestest@users.noreply.github.com> Date: Mon, 17 Nov 2025 12:28:37 -0500 Subject: [PATCH] consistent alpharom stylization I forgot that Alpha-ROM is stylized with a dash. Mainly PRing so it'll also be consistent with how it already is on redump. --- BinaryObjectScanner/Protection/AlphaROM.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BinaryObjectScanner/Protection/AlphaROM.cs b/BinaryObjectScanner/Protection/AlphaROM.cs index fd7161af..810a5a50 100644 --- a/BinaryObjectScanner/Protection/AlphaROM.cs +++ b/BinaryObjectScanner/Protection/AlphaROM.cs @@ -84,7 +84,7 @@ public class AlphaROM : IDiskImageCheck, IExecutableCheck b < 60).Length >= 5 && Array.FindAll(applicationIdentifierStringBytes, b => b > 60).Length >= 5) { - return "AlphaROM"; + return "Alpha-ROM"; } // Type #2: Usually 20 characters long, but Redump ID 124334 is 18 characters long. Validate that it @@ -107,7 +107,7 @@ public class AlphaROM : IDiskImageCheck, IExecutableCheck b < 60) && Array.TrueForAll(finalCharacters, b => b > 60)) - return "AlphaROM"; + return "Alpha-ROM"; } return null;