Menu

Defeating the Matrix Stack Bug

It goes to show you no matter how many years you spend coding, pointers can still trip you up. Long story short, it's embarrassing that the matrix stack bug came down to needing:

*stack = next
instead of:
stack = &next;

*sigh*

Posted by Frank Fisher 2004-07-17

Log in to post a comment.