Skip to content

Commit

Permalink
Don't crash if SDL_Flip() is called with an OpenGL mode set
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Mar 9, 2006
1 parent 577bfba commit d764d1e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/video/SDL_video.c
Expand Up @@ -1008,6 +1008,10 @@ void SDL_UpdateRects (SDL_Surface *screen, int numrects, SDL_Rect *rects)
SDL_VideoDevice *video = current_video;
SDL_VideoDevice *this = current_video;

if ( (screen->flags & (SDL_OPENGL | SDL_OPENGLBLIT)) == SDL_OPENGL ) {
SDL_SetError("OpenGL active, use SDL_GL_SwapBuffers()");
return;
}
if ( screen == SDL_ShadowSurface ) {
/* Blit the shadow surface using saved mapping */
SDL_Palette *pal = screen->format->palette;
Expand Down

0 comments on commit d764d1e

Please sign in to comment.