diff --git a/Decoder/ABlock.cs b/Decoder/ABlock.cs index 32974c1..7a0fc60 100644 --- a/Decoder/ABlock.cs +++ b/Decoder/ABlock.cs @@ -5,7 +5,7 @@ namespace ChocolArm64.Decoder class ABlock { public long Position { get; set; } - public long EndPosition { get; set; } + public long EndPosition { get; set; } public ABlock Next { get; set; } public ABlock Branch { get; set; } diff --git a/Decoder/ADecoder.cs b/Decoder/ADecoder.cs index 32a68ad..b154a54 100644 --- a/Decoder/ADecoder.cs +++ b/Decoder/ADecoder.cs @@ -94,7 +94,7 @@ namespace ChocolArm64.Decoder } } - //If we have on the tree two blocks with the same end position, + //If we have on the graph two blocks with the same end position, //then we need to split the bigger block and have two small blocks, //the end position of the bigger "Current" block should then be == to //the position of the "Smaller" block.