1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-04 22:20:24 +00:00

Fixes CONST PreParse when using existing CONSTS stored as _FLOAT.

This commit is contained in:
FellippeHeitor 2020-01-29 02:36:15 -03:00
parent e491b566a7
commit 53dcec5603

View file

@ -24035,6 +24035,7 @@ SUB PreParse (e$)
ELSE
IF t AND ISFLOAT THEN
r$ = STR$(constfloat(i2))
r$ = N2S(r$)
ELSE
IF t AND ISUNSIGNED THEN r$ = STR$(constuinteger(i2)) ELSE r$ = STR$(constinteger(i2))
END IF