Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
SDL_OPENGLBLIT is really gone...
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Apr 27, 2006
1 parent 190fe3e commit d714494
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/SDL_video.c
Expand Up @@ -936,7 +936,7 @@ 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 ) {
if ( screen->flags & SDL_OPENGL ) {
SDL_SetError("OpenGL active, use SDL_GL_SwapBuffers()");
return;
}
Expand Down

0 comments on commit d714494

Please sign in to comment.