mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
* 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:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user