From 6a27161322f7aaedb56c1df51c5e063afcad77f2 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 4 Jan 2023 23:53:46 -0800 Subject: [PATCH] Add WiseInst for old NE Wise --- BurnOutSharp/PackerType/WiseInstaller.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/BurnOutSharp/PackerType/WiseInstaller.cs b/BurnOutSharp/PackerType/WiseInstaller.cs index f0d7c966..dea33c24 100644 --- a/BurnOutSharp/PackerType/WiseInstaller.cs +++ b/BurnOutSharp/PackerType/WiseInstaller.cs @@ -33,10 +33,11 @@ namespace BurnOutSharp.PackerType if (data == null) return null; - // TODO: Keep this around until it can be confirmed with NE checks as well - // TODO: This _may_ actually over-match. See msvbvm50.exe for an example var neMatchSets = new List { + // WiseInst + new ContentMatchSet(new byte?[] { 0x57, 0x69, 0x73, 0x65, 0x49, 0x6E, 0x73, 0x74 }, "Wise Installation Wizard Module"), + // WiseMain new ContentMatchSet(new byte?[] { 0x57, 0x69, 0x73, 0x65, 0x4D, 0x61, 0x69, 0x6E }, "Wise Installation Wizard Module"), };