mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Fix CHD parsing, threading, version
This commit is contained in:
@@ -67,7 +67,7 @@ namespace SabreTools.Library.FileTypes
|
||||
|
||||
using (BinaryReader br = new BinaryReader(stream, Encoding.Default, true))
|
||||
{
|
||||
chd.tag = br.ReadCharsBigEndian(8);
|
||||
chd.tag = br.ReadChars(8);
|
||||
chd.length = br.ReadUInt32BigEndian();
|
||||
chd.version = br.ReadUInt32BigEndian();
|
||||
chd.flags = (Flags)br.ReadUInt32BigEndian();
|
||||
@@ -75,11 +75,14 @@ namespace SabreTools.Library.FileTypes
|
||||
chd.totalhunks = br.ReadUInt32BigEndian();
|
||||
chd.logicalbytes = br.ReadUInt64BigEndian();
|
||||
chd.metaoffset = br.ReadUInt64BigEndian();
|
||||
chd.md5 = br.ReadBytesBigEndian(16);
|
||||
chd.parentmd5 = br.ReadBytesBigEndian(16);
|
||||
chd.md5 = br.ReadBytes(16);
|
||||
chd.parentmd5 = br.ReadBytes(16);
|
||||
chd.hunkbytes = br.ReadUInt32BigEndian();
|
||||
chd.sha1 = br.ReadBytesBigEndian(20);
|
||||
chd.parentsha1 = br.ReadBytesBigEndian(20);
|
||||
chd.sha1 = br.ReadBytes(20);
|
||||
chd.parentsha1 = br.ReadBytes(20);
|
||||
|
||||
chd.MD5 = chd.md5;
|
||||
chd.SHA1 = chd.sha1;
|
||||
}
|
||||
|
||||
return chd;
|
||||
|
||||
Reference in New Issue
Block a user