* DiscImageChef.Filesystems/BFS.cs:

Invert endian description

	* DiscImageChef/Commands/Checksum.cs:
	  Modified checksums command to use multiple-sector reading
	  and be heavily multithreaded.

	* DiscImageChef/DiscImageChef.csproj:
	  Enable optimizations on Release.
This commit is contained in:
2015-11-10 06:16:23 +00:00
parent 26b0b6373b
commit fb961787e1
5 changed files with 1048 additions and 104 deletions

View File

@@ -171,9 +171,9 @@ namespace DiscImageChef.Plugins
besb.indices_len = BigEndianBitConverter.ToUInt16(sb_sector, 0x82);
if (!BigEndianBitConverter.IsLittleEndian) // Big-endian filesystem
sb.AppendLine("Big-endian BeFS");
sb.AppendLine("Little-endian BeFS");
else
sb.AppendLine("Little-endian BeFS");
sb.AppendLine("Big-endian BeFS");
if (besb.magic1 != BEFS_MAGIC1 || besb.fs_byte_order != BEFS_ENDIAN ||
besb.magic2 != BEFS_MAGIC2 || besb.magic3 != BEFS_MAGIC3 ||