diff --git a/README.md b/README.md index 33658e2..21e59d0 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -edccchk v1.10 +edccchk v1.11 ============= EDC/ECC checker for RAW (2352 bytes/sector) CD images @@ -21,6 +21,11 @@ Features * Supports Mode 0, Mode 1 and Mode 2 data sectors, ignores Audio sectors. * Shows failing sectors as MSF. +Known bugs +========== + +* Total sectors count gets always 1 more than sectors exist. + Changelog ========= @@ -31,6 +36,9 @@ Changelog 2014/03/02 v1.10 * Corrected handling of mode 2 form 2 sectors with omitted EDC. Side-effect, corrects mode 2 form-less sectors processing. +2014/03/02 v1.11 +* Corrected sum of total errors. + To-Do ===== diff --git a/bin/edccchk-v1.11-linux64.tzx b/bin/edccchk-v1.11-linux64.tzx new file mode 100644 index 0000000..dde3fe0 Binary files /dev/null and b/bin/edccchk-v1.11-linux64.tzx differ diff --git a/bin/edccchk-v1.11-win32.zip b/bin/edccchk-v1.11-win32.zip new file mode 100644 index 0000000..53c1aca Binary files /dev/null and b/bin/edccchk-v1.11-win32.zip differ diff --git a/edccchk.c b/edccchk.c index 28700f3..c180d84 100644 --- a/edccchk.c +++ b/edccchk.c @@ -402,6 +402,7 @@ static int8_t ecmify( { fprintf(stderr, "Mode 2 form 2 sector with error at address: %02X:%02X:%02X\n", sector[0x00C], sector[0x00D], sector[0x00E]); mode2f2errors++; + totalerrors++; } } else @@ -417,6 +418,7 @@ static int8_t ecmify( { fprintf(stderr, "Mode 2 form 1 sector with error at address: %02X:%02X:%02X\n", sector[0x00C], sector[0x00D], sector[0x00E]); mode2f1errors++; + totalerrors++; } } } diff --git a/version.h b/version.h index fc5c59a..0ca2b92 100644 --- a/version.h +++ b/version.h @@ -1 +1 @@ -"v1.10" +"v1.11"