aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Exceptions/UndefinedInstructionException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/Exceptions/UndefinedInstructionException.cs')
-rw-r--r--Ryujinx.HLE/Exceptions/UndefinedInstructionException.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.HLE/Exceptions/UndefinedInstructionException.cs b/Ryujinx.HLE/Exceptions/UndefinedInstructionException.cs
index 84bb1fc5..dfbd6c27 100644
--- a/Ryujinx.HLE/Exceptions/UndefinedInstructionException.cs
+++ b/Ryujinx.HLE/Exceptions/UndefinedInstructionException.cs
@@ -8,6 +8,6 @@ namespace Ryujinx.HLE.Exceptions
public UndefinedInstructionException() : base() { }
- public UndefinedInstructionException(long position, int opCode) : base(string.Format(ExMsg, position, opCode)) { }
+ public UndefinedInstructionException(ulong address, int opCode) : base(string.Format(ExMsg, address, opCode)) { }
}
} \ No newline at end of file