1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-29 09:20:38 +00:00

Fix procedure to clear existing watchpoint

This commit is contained in:
FellippeHeitor 2021-09-29 21:23:59 -03:00
parent 53c4d8ee56
commit fcceba182c

View file

@ -8581,6 +8581,7 @@ FUNCTION idevariablewatchbox$(currentScope$, filter$, selectVar, returnAction)
END SELECT
END IF
IF thisReturnAction <> 3 THEN
IF INSTR(varType$, "STRING") = 0 THEN
v$ = op$ + actualValue$
IF v$ <> op$ + LTRIM$(STR$(VAL(actualValue$))) THEN
@ -8592,6 +8593,7 @@ FUNCTION idevariablewatchbox$(currentScope$, filter$, selectVar, returnAction)
v$ = op$ + " " + actualValue$ 'just to prettify it
END IF
END IF
cmd$ = ""
cmd$ = cmd$ + MKL$(tempIndex&)