1
0
Fork 0

DBG: Fix visual display of callstack

This commit is contained in:
Nukem 2015-10-18 01:40:23 -04:00
parent 0f41be54d9
commit b9b8e4ada2
1 changed files with 2 additions and 1 deletions

View File

@ -217,7 +217,8 @@ void stackgetcallstack(duint csp, CALLSTACK* callstack)
#endif
// Container for each callstack entry (20 pre-allocated entries)
std::vector<CALLSTACKENTRY> callstackVector(20);
std::vector<CALLSTACKENTRY> callstackVector;
callstackVector.reserve(20);
while(true)
{