Workaround for gdc std.conv problem

This commit is contained in:
edmccard 2012-04-14 11:24:38 -04:00
parent 951dc30098
commit 674f525f37
1 changed files with 1 additions and 1 deletions

View File

@ -3414,7 +3414,7 @@ struct CheckOptions
op = op[2..$];
if (isNumeric(op))
{
int code = to!int(op, 16);
int code = parse!(int, string)(op, 16);
if (code >= 0x00 && code <= 0xFF)
{
codes6502 ~= [cast(ubyte)code];