mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-05 22:01:33 +00:00
Another size read mismatch in IRD
This commit is contained in:
@@ -59,7 +59,7 @@ namespace SabreTools.Serialization.Readers
|
||||
ird.RegionHashes[i] = data.ReadBytes(16) ?? [];
|
||||
}
|
||||
|
||||
ird.FileCount = data.ReadByteValue();
|
||||
ird.FileCount = data.ReadUInt32LittleEndian();
|
||||
ird.FileKeys = new ulong[ird.FileCount];
|
||||
ird.FileHashes = new byte[ird.FileCount][];
|
||||
for (int i = 0; i < ird.FileCount; i++)
|
||||
|
||||
Reference in New Issue
Block a user