1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-05 01:50:25 +00:00

Adds undeclared variables too

This commit is contained in:
Fellippe Heitor 2021-07-16 01:23:46 -03:00
parent 8829518adf
commit e95e8a4825

View file

@ -25713,6 +25713,9 @@ SUB manageVariableList (name$, __cname$, action AS _BYTE)
CASE ELSE 'find and mark as used
IF found THEN
usedVariableList(i).used = -1
ELSE
manageVariableList name$, __cname$, 0
manageVariableList name$, __cname$, 12
END IF
END SELECT
END SUB