mirror of
https://github.com/claunia/edccchk.git
synced 2025-12-16 19:24:51 +00:00
Mode 2 errors where not counting on total. Bumped to version 1.11.
This commit is contained in:
10
README.md
10
README.md
@@ -1,4 +1,4 @@
|
|||||||
edccchk v1.10
|
edccchk v1.11
|
||||||
=============
|
=============
|
||||||
|
|
||||||
EDC/ECC checker for RAW (2352 bytes/sector) CD images
|
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.
|
* Supports Mode 0, Mode 1 and Mode 2 data sectors, ignores Audio sectors.
|
||||||
* Shows failing sectors as MSF.
|
* Shows failing sectors as MSF.
|
||||||
|
|
||||||
|
Known bugs
|
||||||
|
==========
|
||||||
|
|
||||||
|
* Total sectors count gets always 1 more than sectors exist.
|
||||||
|
|
||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
@@ -31,6 +36,9 @@ Changelog
|
|||||||
2014/03/02 v1.10
|
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.
|
* 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
|
To-Do
|
||||||
=====
|
=====
|
||||||
|
|
||||||
|
|||||||
BIN
bin/edccchk-v1.11-linux64.tzx
Normal file
BIN
bin/edccchk-v1.11-linux64.tzx
Normal file
Binary file not shown.
BIN
bin/edccchk-v1.11-win32.zip
Normal file
BIN
bin/edccchk-v1.11-win32.zip
Normal file
Binary file not shown.
@@ -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]);
|
fprintf(stderr, "Mode 2 form 2 sector with error at address: %02X:%02X:%02X\n", sector[0x00C], sector[0x00D], sector[0x00E]);
|
||||||
mode2f2errors++;
|
mode2f2errors++;
|
||||||
|
totalerrors++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
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]);
|
fprintf(stderr, "Mode 2 form 1 sector with error at address: %02X:%02X:%02X\n", sector[0x00C], sector[0x00D], sector[0x00E]);
|
||||||
mode2f1errors++;
|
mode2f1errors++;
|
||||||
|
totalerrors++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user