* 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:
2016-09-13 14:52:31 +01:00
parent 6b70265a5d
commit 59799daccf
4 changed files with 49 additions and 17 deletions

View File

@@ -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+";