mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +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);
|
||||
|
||||
|
||||
@@ -1,3 +1,9 @@
|
||||
2016-08-09 Natalia Portillo <claunia@claunia.com>
|
||||
|
||||
* AppleMap.cs: Do not continue checking APM on CDs with
|
||||
incorrect sector size. It is buggy and needs a lot of
|
||||
retesting.
|
||||
|
||||
2016-08-07 Natalia Portillo <claunia@claunia.com>
|
||||
|
||||
* DiscImageChef.Partitions.csproj: Public beta release
|
||||
|
||||
Reference in New Issue
Block a user