aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Common/Hash128.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Common/Hash128.cs')
-rw-r--r--Ryujinx.Common/Hash128.cs6
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}";