I am programming a game. Without fail, the program will cleanly close after about 10 seconds. I thought it was a problem with my state machine but when I change the GAME_CLOSED event to just restart the game, the game still closed. No errors are logged.
I have no overarching timing routine that could even detect how much time had passed, much less through multiple states (right now you can pass through the splash and title screens or not, and regardless of what happens it always quits after the same amount of time every time).
Adding to the frustration, CodeBlocks' GDB debugger has decided to not work for me today. Now every time I try to debug it gives me a Microsoft Visual C++ Runtime Library error: "This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information."
Did I make some sort of mistake and one of these libraries is commercial and not free? Is there any common problem with the compilation of these libraries (I did compile my libs from source)? Why is my debugger not working?
- OS: Windows 7 Ultimate (64-bit)
- Language: C++
- IDE: Code::BLocks
- Compiler: GNU GCC
- Libraries used: SDL, SDL_gfx, SDL_image, libpng, zlib, TinyXML++
