Hi there,
I found a problem while debugging with locals and globals.
I think you need a refreshing for the output variables.
Try something like this:
func fa()
Local $result = false
Local $test = fb()
; result seems to be manipulated by fb but is local there. Using the $result in a debug-output update works
return $result
endfunc
func fb()
Local $result = "hello"
return $result
endfunc
then do a calling:
Local $test = fa()
step through.
you see in fa result is set to false, when stepping into the fb (within the fa function) then result is shown to be "hello"
if the variable is used before returning the content is updated correctly.
Maybe you can refresh the variables after "comming" back from a func ( one step after EndFunc )
Greetings,
Fishy.
