diff options
| author | Ac_K <Acoustik666@gmail.com> | 2018-10-13 21:29:49 +0000 |
|---|---|---|
| committer | Thomas Guillemard <thog@protonmail.com> | 2018-10-13 23:29:49 +0200 |
| commit | 824d4b74d068b4dbdd167c37efe1df9afa493822 (patch) | |
| tree | edcf45121973f8bbf51b65974bce3bf151de6556 | |
| parent | aa1cd849cfe254dc7c8c9a0783a546a4b9b3c0ab (diff) | |
Update UInt128.cs (#453)
Fix invalid Write implementation.
| -rw-r--r-- | Ryujinx.HLE/Utilities/UInt128.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.HLE/Utilities/UInt128.cs b/Ryujinx.HLE/Utilities/UInt128.cs index a2546dd3..54c0c35f 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 +} |
