From 19be6eaf9f2aa237c070aec266669d8b4ed99556 Mon Sep 17 00:00:00 2001 From: Alex Barney Date: Tue, 30 Oct 2018 20:28:23 -0500 Subject: [PATCH] Adjust alignment --- ChocolArm64/Translation/ILEmitterCtx.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ChocolArm64/Translation/ILEmitterCtx.cs b/ChocolArm64/Translation/ILEmitterCtx.cs index c8c1230642..c1d1be366e 100644 --- a/ChocolArm64/Translation/ILEmitterCtx.cs +++ b/ChocolArm64/Translation/ILEmitterCtx.cs @@ -20,7 +20,7 @@ namespace ChocolArm64.Translation private Block[] _graph; private Block _root; public Block CurrBlock => _graph[_blkIndex]; - public OpCode64 CurrOp => _graph[_blkIndex].OpCodes[_opcIndex]; + public OpCode64 CurrOp => _graph[_blkIndex].OpCodes[_opcIndex]; private ILEmitter _emitter; @@ -44,7 +44,7 @@ namespace ChocolArm64.Translation TranslatorCache cache, Block[] graph, Block root, - string subName) + string subName) { _cache = cache ?? throw new ArgumentNullException(nameof(cache)); _graph = graph ?? throw new ArgumentNullException(nameof(graph));