Create overload to check CD sector not caring for what fails.

This commit is contained in:
2020-07-18 19:41:28 +01:00
parent f0d3b2fe09
commit ae0f670ac8

View File

@@ -44,6 +44,8 @@ namespace Aaru.Checksums
static byte[] eccBTable;
static uint[] edcTable;
public static bool? CheckCdSector(byte[] buffer) => CheckCdSector(buffer, out _, out _, out _);
public static bool? CheckCdSector(byte[] buffer, out bool? correctEccP, out bool? correctEccQ,
out bool? correctEdc)
{