From b23e10e2615807c2ba32202e72834701a8005ea9 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 24 Feb 2019 22:31:59 -0500 Subject: [PATCH] Improves error messaging and avoids trying to use a null window. --- OSBindings/SDL/main.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/OSBindings/SDL/main.cpp b/OSBindings/SDL/main.cpp index 4fda43c29..6b200a6fa 100644 --- a/OSBindings/SDL/main.cpp +++ b/OSBindings/SDL/main.cpp @@ -455,9 +455,13 @@ int main(int argc, char *argv[]) { 400, 300, SDL_WINDOW_OPENGL | SDL_WINDOW_RESIZABLE); - SDL_GLContext gl_context = SDL_GL_CreateContext(window); + SDL_GLContext gl_context; + if(window) { + gl_context = SDL_GL_CreateContext(window); + } if(!window || !gl_context) { - std::cerr << "Could not create window; reported error: \"" << SDL_GetError() << "\"" << std::endl; + std::cerr << "Could not create " << (window ? "OpenGL context" : "window"); + std::cerr << "; reported error: \"" << SDL_GetError() << "\"" << std::endl; return -1; }