Update UInt128.cs

Fix a `Write` bug.
This commit is contained in:
Ac_K 2018-10-13 23:24:23 +02:00 committed by GitHub
parent aa1cd849cf
commit 5a01343df0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -44,8 +44,8 @@ namespace Ryujinx.HLE.Utilities
public void Write(BinaryWriter BinaryWriter)
{
BinaryWriter.Write(High);
BinaryWriter.Write(Low);
BinaryWriter.Write(High);
}
public override string ToString()
@ -58,4 +58,4 @@ namespace Ryujinx.HLE.Utilities
return (Low | High) == 0;
}
}
}
}