Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions contributors.txt
Original file line number Diff line number Diff line change
Expand Up @@ -153,5 +153,6 @@ YYYY/MM/DD, github id, Full name, email
2017/06/25, alimg, Alim Gökkaya, [email protected]
2017/07/09, neatnerd, Mike Arshinskiy, [email protected]
2017/07/11, dhalperi, Daniel Halperin, [email protected]
2017/07/17, vaibhavaingankar09, Vaibhav Vaingankar, [email protected]
2017/07/23, venkatperi, Venkat Peri, [email protected]
2017/07/27, shirou, WAKAYAMA Shirou, [email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -1092,7 +1092,10 @@ protected internal long ReadLong()
protected internal Guid ReadUUID()
{
byte[] d = BitConverter.GetBytes (ReadLong ());
Array.Reverse(d);
if(BitConverter.IsLittleEndian)
{
Array.Reverse(d);
}
short c = (short)ReadInt();
short b = (short)ReadInt();
int a = ReadInt32();
Expand Down