Skip to content

Commit

Permalink
Merge branch 'pull-review/1693' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
hvacengi committed Jul 8, 2016
2 parents b9f3df6 + e5c1f26 commit 24be1f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kOS/Function/Math.cs
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ public override void Execute(SharedObjects shared)
string argument = PopValueAssert(shared).ToString();
AssertArgBottomAndConsume(shared);
char result = argument.ToCharArray()[0];
ReturnValue = ScalarValue.Create(result);
ReturnValue = ScalarValue.Create((int)result);
}
}
}

0 comments on commit 24be1f3

Please sign in to comment.