From 4f006f65f025477b3e13cc2a24f1dafdb84039e0 Mon Sep 17 00:00:00 2001 From: avolkov Date: Wed, 5 Feb 2003 01:31:56 +0000 Subject: [PATCH] SDL_ANYFORMAT uncommented (was commented out by mistake) git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@675 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/libs/graphics/sdl/pure.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sc2/src/sc2code/libs/graphics/sdl/pure.c b/sc2/src/sc2code/libs/graphics/sdl/pure.c index 1e3b5ac80..065e8b306 100644 --- a/sc2/src/sc2code/libs/graphics/sdl/pure.c +++ b/sc2/src/sc2code/libs/graphics/sdl/pure.c @@ -87,7 +87,7 @@ TFB_Pure_InitGraphics (int driver, int flags, int width, int height, int bpp) fprintf (stderr, "Screen resolution of %dx%d not supported under pure SDL, using 640x480\n", width, height); } - //videomode_flags |= SDL_ANYFORMAT; + videomode_flags |= SDL_ANYFORMAT; if (flags & TFB_GFXFLAGS_FULLSCREEN) videomode_flags |= SDL_FULLSCREEN;