aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Tamper/Operations/OpLsh.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.HLE/HOS/Tamper/Operations/OpLsh.cs')
-rw-r--r--src/Ryujinx.HLE/HOS/Tamper/Operations/OpLsh.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Ryujinx.HLE/HOS/Tamper/Operations/OpLsh.cs b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpLsh.cs
index 34e7c81a..6c846425 100644
--- a/src/Ryujinx.HLE/HOS/Tamper/Operations/OpLsh.cs
+++ b/src/Ryujinx.HLE/HOS/Tamper/Operations/OpLsh.cs
@@ -2,9 +2,9 @@ namespace Ryujinx.HLE.HOS.Tamper.Operations
{
class OpLsh<T> : IOperation where T : unmanaged
{
- IOperand _destination;
- IOperand _lhs;
- IOperand _rhs;
+ readonly IOperand _destination;
+ readonly IOperand _lhs;
+ readonly IOperand _rhs;
public OpLsh(IOperand destination, IOperand lhs, IOperand rhs)
{