DBG: Fix visual display of callstack
This commit is contained in:
parent
0f41be54d9
commit
b9b8e4ada2
|
@ -217,7 +217,8 @@ void stackgetcallstack(duint csp, CALLSTACK* callstack)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Container for each callstack entry (20 pre-allocated entries)
|
// Container for each callstack entry (20 pre-allocated entries)
|
||||||
std::vector<CALLSTACKENTRY> callstackVector(20);
|
std::vector<CALLSTACKENTRY> callstackVector;
|
||||||
|
callstackVector.reserve(20);
|
||||||
|
|
||||||
while(true)
|
while(true)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue