1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-29 10:30:36 +00:00

Merge branch 'var-export' of https://github.com/QB64Team/qb64 into var-export

This commit is contained in:
FellippeHeitor 2021-08-03 00:37:45 -03:00
commit 359aa7ab2d

View file

@ -7466,7 +7466,7 @@ SUB DebugMode
GetCommand:
GET #debugClient&, , temp$
IF _CONNECTED(debugClient&) = 0 THEN
IF os$ = "WIN" AND _CONNECTED(debugClient&) = 0 THEN
clearStatusWindow 0
setStatusMessage 1, "Debug session aborted.", 7
setStatusMessage 2, "Disconnected.", 2
@ -7494,7 +7494,7 @@ SUB DebugMode
SendCommand:
cmd$ = cmd$ + endc$
PUT #debugClient&, , cmd$
IF _CONNECTED(debugClient&) = 0 THEN
IF os$ = "WIN" AND _CONNECTED(debugClient&) = 0 THEN
clearStatusWindow 0
setStatusMessage 1, "Debug session aborted.", 7
setStatusMessage 2, "Disconnected.", 2