From 5a01343df003733054e76dbd78a0879798a979b1 Mon Sep 17 00:00:00 2001 From: Ac_K Date: Sat, 13 Oct 2018 23:24:23 +0200 Subject: [PATCH] Update UInt128.cs Fix a `Write` bug. --- Ryujinx.HLE/Utilities/UInt128.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ryujinx.HLE/Utilities/UInt128.cs b/Ryujinx.HLE/Utilities/UInt128.cs index a2546dd3cd..54c0c35fec 100644 --- a/Ryujinx.HLE/Utilities/UInt128.cs +++ b/Ryujinx.HLE/Utilities/UInt128.cs @@ -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; } } -} \ No newline at end of file +}