From b49d2e7326c8fc00d06eae6ae8f04868db64c5c6 Mon Sep 17 00:00:00 2001 From: FellippeHeitor Date: Sun, 1 Aug 2021 19:15:37 -0300 Subject: [PATCH] Fixes `"set address"` --- source/ide/ide_methods.bas | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/ide/ide_methods.bas b/source/ide/ide_methods.bas index 74b7ea1e4..ba9849fbd 100644 --- a/source/ide/ide_methods.bas +++ b/source/ide/ide_methods.bas @@ -7084,8 +7084,9 @@ SUB DebugMode CASE "STRING" varSize& = usedVariableList(tempIndex&).strLength value$ = LEFT$(value$, varSize&) + varSize& = LEN(value$) END SELECT - cmd$ = "set address" + MKL$(varSize&) + _MK$(_OFFSET, address%&) + value$ + cmd$ = "set address:" + MKL$(varSize&) + _MK$(_OFFSET, address%&) + value$ GOSUB SendCommand usedVariableList(tempIndex&).mostRecentValue = CHR$(16) + CHR$(4) + "Sent: " + MID$(result$, 5) END IF