From d714494d6d4e2149f18d8cce544cb099a12e617a Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Thu, 27 Apr 2006 05:49:51 +0000 Subject: [PATCH] SDL_OPENGLBLIT is really gone... --- src/video/SDL_video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/SDL_video.c b/src/video/SDL_video.c index 9848623e6..9fed29f0b 100644 --- a/src/video/SDL_video.c +++ b/src/video/SDL_video.c @@ -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; }