mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
* DiscImageChef.Filters/PCExchange.cs:
Removed debug messages. * DiscImageChef.Filesystems/FAT.cs: Corrected syntax bug. * DiscImageChef.Filters/Filters.cs: Corrected handling of "No filter". * DiscImageChef.Filesystems/AmigaDOS.cs: Corrected detection of FFS on hard disks and FFS with block sizes > sector size.
This commit is contained in:
@@ -216,7 +216,7 @@ namespace DiscImageChef.Filesystems
|
||||
if(fat32_signature == "FAT32 ")
|
||||
{
|
||||
// TODO: Check with a real FAT+ to see where the version is set
|
||||
if(bpb_sector[0x2A] == 1 || (bpb_sector[0x2B] == 1)
|
||||
if(bpb_sector[0x2A] == 1 || bpb_sector[0x2B] == 1)
|
||||
{
|
||||
sb.AppendLine("FAT+"); // Seems easy, check reading
|
||||
xmlFSType.Type = "FAT+";
|
||||
|
||||
Reference in New Issue
Block a user