alphazolam / RE_RSZ

010 Editor Binary Template for editing RE Engine game files
MIT License
87 stars 26 forks source link

Change uuid read/write to le order #9

Closed dtlnor closed 1 year ago

dtlnor commented 1 year ago

From the default c# class of RE game, System.Guid it uses UInt32 UInt16 UInt16 Byte[8]. Which should read and write in LE order at the first 4, 2, 2 bytes.

ref: https://stackoverflow.com/questions/45671415/c-sharp-why-does-system-guid-flip-the-bytes-in-a-byte-array

dtlnor commented 1 year ago

Example image image

(the template is updated to le order) image