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

Send var-address init code to maindata.txt instead of global.txt

This commit is contained in:
Luke Ceddia 2021-07-16 14:07:27 +10:00
parent f0751243ef
commit 8829518adf
No known key found for this signature in database
GPG key ID: 319344384A0759B0

View file

@ -11626,8 +11626,8 @@ IF vWatchOn = 1 THEN
END IF
NEXT
IF totalLocalVariables > 0 THEN
PRINT #18, "void *vwatch_local_vars["; totalLocalVariables; "];"
PRINT #18, localVariablesList$
PRINT #13, "void *vwatch_local_vars["; totalLocalVariables; "];"
PRINT #13, localVariablesList$
END IF
END IF