Pointer to member function problems

Started by
-1 comments, last by n3Xus 15 years, 8 months ago
I posted about some problems about these things before and now I'm having more problems: I have a simple window wrapper which has an OnRun(void(*fncPtr)()) function (with a peek message and stuff like that inside). the fncPtr parameter gets called inside-the fncPtr is usually a rendering or a game update function. bool NGAME::GameState_INIT() { W32WW.OnRun(ManageStates); } the W32WW.OnRun is the function I was talking about earilier (W32WW is a member variable of the NGAME class, ManageStates is a static member function of NGAME). Every time I run it i get a stack overflow error. Anyone has any suggestions? Is the OnRun(void(*fncPtr) and than calling fncPtr; inside a bad way and I should try something else?

This topic is closed to new replies.

Advertisement