diff options
Diffstat (limited to 'Ryujinx.HLE/Exceptions/UndefinedInstructionException.cs')
-rw-r--r-- | Ryujinx.HLE/Exceptions/UndefinedInstructionException.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.HLE/Exceptions/UndefinedInstructionException.cs b/Ryujinx.HLE/Exceptions/UndefinedInstructionException.cs index 24bf9efd..84bb1fc5 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(long position, int opCode) : base(string.Format(ExMsg, position, opCode)) { } } }
\ No newline at end of file |