# HG changeset patch # User Sam Lantinga # Date 1004847507 0 # Node ID 4d24d5a660a8b5bc9adad01656a5f7b570873b0e # Parent 153f221b7d484aedc94f0513c86192e8fbaf8517 Fix a crash if an OpenGL video mode can't be set. diff -r 153f221b7d48 -r 4d24d5a660a8 src/video/SDL_video.c --- a/src/video/SDL_video.c Sun Nov 04 04:18:05 2001 +0000 +++ b/src/video/SDL_video.c Sun Nov 04 04:18:27 2001 +0000 @@ -615,11 +615,12 @@ mode = video->SetVideoMode(this, prev_mode,video_w,video_h,video_bpp,flags); if ( mode ) { /* Prevent resize events from mode change */ SDL_PrivateResize(mode->w, mode->h); + + /* Sam - If we asked for OpenGL mode, and didn't get it, fail */ + if ( is_opengl && !(mode->flags & SDL_OPENGL) ) { + mode = NULL; + } } - /* Sam - If we asked for an OpenGL mode, but didn't get it, fail */ - if ( is_opengl && !(mode->flags & SDL_OPENGL) ) { - mode = NULL; - } /* * rcg11292000 * If you try to set an SDL_OPENGL surface, and fail to find a