* 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

@@ -189,7 +189,6 @@ namespace DiscImageChef.Filters
public override bool Identify(byte[] buffer)
{
System.Console.WriteLine("parentFolder");
return false;
}
@@ -201,11 +200,8 @@ namespace DiscImageChef.Filters
public override bool Identify(string path)
{
System.Console.WriteLine("parentFolder");
string parentFolder = Path.GetDirectoryName(path);
System.Console.WriteLine("parentFolder {0}", parentFolder);
if(!File.Exists(Path.Combine(parentFolder, FinderInfo)))
return false;
@@ -314,12 +310,6 @@ namespace DiscImageChef.Filters
dataLen = new FileInfo(dataPath).Length;
rsrcLen = new FileInfo(rsrcPath).Length;
System.Console.WriteLine("dataPath = {0}", dataPath);
System.Console.WriteLine("rsrcPath = {0}", rsrcPath);
System.Console.WriteLine("dataLen = {0}", dataLen);
System.Console.WriteLine("rsrcLen = {0}", rsrcLen);
System.Console.WriteLine("basePath = {0}", basePath);
basePath = path;
opened = true;
}