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

Declares *vwatch_local_vars when there are no local vars.

This commit is contained in:
FellippeHeitor 2021-07-20 12:50:17 -03:00
parent 19d22d4c9f
commit 9ade4aea75

View file

@ -5293,6 +5293,8 @@ DO
IF totalLocalVariables > 0 THEN
PRINT #13, "void *vwatch_local_vars["; totalLocalVariables; "];"
PRINT #13, localVariablesList$
ELSE
PRINT #13, "void *vwatch_local_vars[0];"
END IF
END IF
@ -11724,6 +11726,8 @@ IF vWatchOn = 1 THEN
IF totalLocalVariables > 0 THEN
PRINT #13, "void *vwatch_local_vars["; totalLocalVariables; "];"
PRINT #13, localVariablesList$
ELSE
PRINT #13, "void *vwatch_local_vars[0];"
END IF
END IF