mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-21 20:13:06 +00:00
Fix GUID endianness
This commit is contained in:
parent
d1820ba8f0
commit
ede52275da
2 changed files with 7 additions and 6 deletions
|
@ -253,8 +253,8 @@ namespace DKCTF
|
|||
{
|
||||
return Guid.Part1 == 0 &&
|
||||
Guid.Part2 == 0 &&
|
||||
Guid.Part3 == 0 &&
|
||||
Guid.Part4 == 0;
|
||||
Guid.Part3 == 0 &&
|
||||
Guid.Part4[0] == 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -300,12 +300,13 @@ namespace DKCTF
|
|||
public uint Part1;
|
||||
public ushort Part2;
|
||||
public ushort Part3;
|
||||
public ulong Part4;
|
||||
|
||||
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 8)]
|
||||
public byte[] Part4;
|
||||
|
||||
public Guid ToGUID()
|
||||
{
|
||||
var bytes = BitConverter.GetBytes(Part4).Reverse().ToArray();
|
||||
return new Guid(Part1, Part2, Part3, bytes[0], bytes[1], bytes[2], bytes[3], bytes[4], bytes[5], bytes[6], bytes[7]);
|
||||
return new Guid(Part1, Part2, Part3, Part4[0], Part4[1], Part4[2], Part4[3], Part4[4], Part4[5], Part4[6], Part4[7]);
|
||||
}
|
||||
|
||||
public override string ToString() //Represented based on output guids in demo files
|
||||
|
|
|
@ -45,7 +45,7 @@ namespace DKCTF
|
|||
Part1 = reader.ReadUInt32(),
|
||||
Part2 = reader.ReadUInt16(),
|
||||
Part3 = reader.ReadUInt16(),
|
||||
Part4 = reader.ReadUInt64(),
|
||||
Part4 = reader.ReadBytes(8),
|
||||
},
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue