diff --git a/test/base.d b/test/base.d index fd2251f..6072765 100644 --- a/test/base.d +++ b/test/base.d @@ -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];