aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx/Cpu/Translation/AILOpCodeStore.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx/Cpu/Translation/AILOpCodeStore.cs')
-rw-r--r--Ryujinx/Cpu/Translation/AILOpCodeStore.cs4
1 files changed, 1 insertions, 3 deletions
diff --git a/Ryujinx/Cpu/Translation/AILOpCodeStore.cs b/Ryujinx/Cpu/Translation/AILOpCodeStore.cs
index 34b26fe2..c4ea53ab 100644
--- a/Ryujinx/Cpu/Translation/AILOpCodeStore.cs
+++ b/Ryujinx/Cpu/Translation/AILOpCodeStore.cs
@@ -10,10 +10,8 @@ namespace ChocolArm64.Translation
public AIoType IoType { get; private set; }
public ARegisterSize RegisterSize { get; private set; }
-
- public AILOpCodeStore(int Index, AIoType IoType) : this(Index, IoType, ARegisterSize.Int64) { }
- public AILOpCodeStore(int Index, AIoType IoType, ARegisterSize RegisterSize)
+ public AILOpCodeStore(int Index, AIoType IoType, ARegisterSize RegisterSize = ARegisterSize.Int64)
{
this.IoType = IoType;
this.Index = Index;