OK so the ones that appear in my list from bottom to top are the order in which they are called? Is this just the list of function calls? I get a bunch of crap for instance
1 stuff I don't know in other tabs
2 stuff I don't know in other tabs
3 stuff I don't know in other tabs
4 stuff I don't know in other tabs
5 pointing to a line in my program
6 pointing to a line in my program
7 pointing to a line in my program
8 pointing to a line in my program
One being the newest.
This is the last function before the crap which is 5 in my example
> mp7.exe!Dealer(std::basic_string<char,std::char_traits<char>,std::allocator<char> > * dName, int * dHit, int i) Line 18 C++
This is the function
1 2 3 4 5 6
|
//Functions
void Dealer(string dName[], int dHit[], int i)
{
dName[i+1] = "Dealer";
dHit[i+1] = DEALER; // arrow points to this line
}
|
That's pretty cool you can do that would of saved me a lot of time to know that 5 weeks earlier. :)