From de35586f306b9947c5aed1533b00b92bae6a3849 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Mon, 8 Sep 2025 11:51:01 -0400 Subject: [PATCH] Fix this because I didn't --- BinaryObjectScanner/Protection/HudsonHuPPPX.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BinaryObjectScanner/Protection/HudsonHuPPPX.cs b/BinaryObjectScanner/Protection/HudsonHuPPPX.cs index 958cca8d..a6239743 100644 --- a/BinaryObjectScanner/Protection/HudsonHuPPPX.cs +++ b/BinaryObjectScanner/Protection/HudsonHuPPPX.cs @@ -28,7 +28,7 @@ namespace BinaryObjectScanner.Protection return "Hudson huPPPX"; // Found in Bomberman Vol 2 (Japan) - if (Array.Exists(exportTable.ExportNameTable?.Strings, s => s.StartsWith("HVRCD_IS_"))) + if (Array.Exists(exportTable.ExportNameTable?.Strings ?? [], s => s.StartsWith("HVRCD_IS_"))) return "Hudson huPPPX"; }