diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-08 19:01:49 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-08 19:01:49 -0400 |
commit | cffb8fbcef2edf15c80423c6b26f55c84b746b6f (patch) | |
tree | c28eb2e098ed70066d73a7dae8de26f0f7aa032d /src/main.cpp | |
parent | 59d3f414f702b57f453e78ebe9c31b9ee5d03054 (diff) |
exit on error
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index 9ce98a1..27cc080 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -13,6 +13,7 @@ int main(int argc,char **argv){ //runs start-up procedures if(SDL_Init(SDL_INIT_VIDEO) < 0){ std::cout << "SDL was not able to initialize! Error: " << SDL_GetError() << std::endl; + return -1; }else{ atexit(SDL_Quit); //Turn on double Buffering @@ -25,6 +26,7 @@ int main(int argc,char **argv){ ); if(window == NULL){ std::cout << "The window failed to generate! Error: " << SDL_GetError() << std::endl; + return -1; }else{ //set OpenGL context mainGLContext = SDL_GL_CreateContext(window); |