* DiscImageChef.DiscImages/CDRWin.cs:

Corrected return of CD+G data, should return all 2448 bytes.

	* DiscImageChef.Partitions/AppleMap.cs:
	  Do not continue checking APM on CDs with incorrect sector
	  size. It is buggy and needs a lot of retesting.
This commit is contained in:
2016-08-09 15:31:44 +01:00
parent 0de296b512
commit beeaf4110f
5 changed files with 60 additions and 3 deletions

View File

@@ -142,7 +142,11 @@ namespace DiscImageChef.PartPlugins
for(ulong i = 0; i < apm_entries; i++) // For each partition
{
if(APMFromHDDOnCD)
APMEntry_sector = Read2048SectorAs512(imagePlugin, first_sector + i);
{
return false;
// TODO This needs several retesting
// APMEntry_sector = Read2048SectorAs512(imagePlugin, first_sector + i);
}
else
APMEntry_sector = imagePlugin.ReadSector(first_sector + i);