mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[Utilities] Fix outputted CRC endianness
This commit is contained in:
@@ -2108,7 +2108,7 @@ namespace SabreTools.Library.Tools
|
||||
}
|
||||
|
||||
crc.Update(buffer, 0, 0);
|
||||
rom.CRC = BitConverter.GetBytes(crc.Value);
|
||||
rom.CRC = BitConverter.GetBytes(crc.Value).Reverse().ToArray();
|
||||
|
||||
if ((omitFromScan & Hash.MD5) == 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user