mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
🐛Fix CRC64 endian problem.
This commit is contained in:
@@ -2209,7 +2209,7 @@ namespace DiscImageChef.DiscImages
|
||||
}
|
||||
|
||||
Crc64Context.Data(data, out byte[] blockCrc);
|
||||
blockCrc = blockCrc.Reverse().ToArray();
|
||||
blockCrc = blockCrc.ToArray();
|
||||
if(BitConverter.ToUInt64(blockCrc, 0) != blockHeader.crc64)
|
||||
{
|
||||
DicConsole.DebugWriteLine("DiscImageChef format plugin",
|
||||
|
||||
Reference in New Issue
Block a user