aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/main.cpp2
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);