You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm wondering why you have moved the enums into the class scope as constants/static vars? Is it just a matter of having them all in the same scope?
This also has created some bugs due to how enums initialise the values of their members. e.g
I'm wondering why you have moved the enums into the class scope as constants/static vars? Is it just a matter of having them all in the same scope?
This also has created some bugs due to how enums initialise the values of their members. e.g
SDL_EVENT_TERMINATING and SDL_EVENT_LOW_MEMORY are initialised to zero where they should be 0x101 and 0x102.
The text was updated successfully, but these errors were encountered: