Skip to content

Commit

Permalink
Merge branch 'master' into patch-2
Browse files Browse the repository at this point in the history
  • Loading branch information
0megaD committed Apr 25, 2017
2 parents 76c24ea + 5c03071 commit 218ad9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dnpatch.script/Script.cs
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ private void BuildTarget()
{
var instruction = instructions[i];
if (instruction["opcode"] != null && instruction["operand"] != null)
target.Instructions[i] =
Instruction.Create((OpCode)GetInstructionField(instruction.First.ToString()).GetValue(this),
target.Instruction =
Instruction.Create((OpCode)GetInstructionField(instruction.First.First.ToString()).GetValue(this),
instruction.Last.Last.Value<dynamic>());
else
target.Instructions[i] =
Expand Down

0 comments on commit 218ad9a

Please sign in to comment.