diff options
Diffstat (limited to 'Ryujinx.Common/Hash128.cs')
-rw-r--r-- | Ryujinx.Common/Hash128.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Ryujinx.Common/Hash128.cs b/Ryujinx.Common/Hash128.cs index 99cd015c..04457bd0 100644 --- a/Ryujinx.Common/Hash128.cs +++ b/Ryujinx.Common/Hash128.cs @@ -9,6 +9,12 @@ namespace Ryujinx.Common public ulong Low; public ulong High; + public Hash128(ulong low, ulong high) + { + Low = low; + High = high; + } + public override string ToString() { return $"{High:x16}{Low:x16}"; |