| Issue 253: | GetStackVariables needs a cast to string | |
| 1 person starred this issue and may be notified of changes. | Back to list |
What steps will reproduce the problem? 1. Run GetStackVariables and all you get is an array of "true" Variable name needs to be casted to string. Index: Debug.cpp =================================================================== --- Debug.cpp (revision 756) +++ Debug.cpp (working copy) @@ -533,7 +533,7 @@ StackVariable *variable = stack->mStackFrames[stackFrameNumber]->variables; while (variable) { - ret->push(variable->mHaxeName); + ret->push(String(variable->mHaxeName)); variable = variable->mNext; } break;
Sep 10, 2013
Project Member
#1
gameh...@gmail.com
Status:
Fixed
Sep 10, 2013
Checked and it works here. |