From 4b387f86c1b3f94dcbe7152b5ac24b2496444a65 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Tue, 3 Nov 2020 14:47:15 -0800 Subject: [PATCH] Hook up MediaMax to scan --- BurnOutSharp/FileType/Executable.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/BurnOutSharp/FileType/Executable.cs b/BurnOutSharp/FileType/Executable.cs index 52cb2891..5698c108 100644 --- a/BurnOutSharp/FileType/Executable.cs +++ b/BurnOutSharp/FileType/Executable.cs @@ -166,6 +166,11 @@ namespace BurnOutSharp.FileType if (!string.IsNullOrWhiteSpace(protection)) Utilities.AppendToDictionary(protections, file, protection); + // MediaMax CD-3 + protection = MediaMaxCD3.CheckContents(fileContent, scanner.IncludePosition); + if (!string.IsNullOrWhiteSpace(protection)) + Utilities.AppendToDictionary(protections, file, protection); + // ProtectDisc protection = ProtectDisc.CheckContents(file, fileContent, scanner.IncludePosition); if (!string.IsNullOrWhiteSpace(protection))