From edbbbb011d7a4f73ed9c5b285cd3f6179056bf5f Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Mon, 21 Oct 2024 21:59:15 -0400 Subject: [PATCH] Renmae MediaMax CD-3 to be more accurate --- .../Protection/{MediaMaxCD3.cs => MediaMax.cs} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename BinaryObjectScanner/Protection/{MediaMaxCD3.cs => MediaMax.cs} (94%) diff --git a/BinaryObjectScanner/Protection/MediaMaxCD3.cs b/BinaryObjectScanner/Protection/MediaMax.cs similarity index 94% rename from BinaryObjectScanner/Protection/MediaMaxCD3.cs rename to BinaryObjectScanner/Protection/MediaMax.cs index 84b34d99..8d6ce608 100644 --- a/BinaryObjectScanner/Protection/MediaMaxCD3.cs +++ b/BinaryObjectScanner/Protection/MediaMax.cs @@ -12,12 +12,12 @@ using SabreTools.Serialization.Wrappers; namespace BinaryObjectScanner.Protection { /// - /// MediaMax CD-3 is a copy protection for audio CDs created by SunnComm, which once installed, restricted users by only allowing a limited number of copies to be made, and only using Windows Media Player. + /// MediaMax is a copy protection for audio CDs created by SunnComm, which once installed, restricted users by only allowing a limited number of copies to be made, and only using Windows Media Player. /// It appears to accomplish this using the official Windows Media Data Session Toolkit. /// List of discs known to contain MediaMax CD-3: https://en.wikipedia.org/wiki/List_of_compact_discs_sold_with_MediaMax_CD-3 /// TODO: Add support for detecting the Mac version, which is present on "All That I Am" by Santana (Barcode 8 2876-59773-2 6) /// - public class MediaMaxCD3 : IPathCheck, IPortableExecutableCheck + public class MediaMax : IPathCheck, IPortableExecutableCheck { /// public string? CheckPortableExecutable(string file, PortableExecutable pex, bool includeDebug)