Quote Originally Posted by MrDeath View Post
oh i forgot to mention that you cannot delete objects which are on stack
Wow never knew that. I sort of taught C++ myself so I guess I skipped learning some of the newbie things. So does that mean it's better to make "new" objects because those can be deleted? Or only reserve smaller objects (like bool and int) for the stack?

I guess I'll check to make sure the object isn't used elsewhere after deleting it.

But thanks for your help, I'll try that soon...