From ec31ae9f16a53a3c6a67bc11c23728f64b6c8cf3 Mon Sep 17 00:00:00 2001 From: darkvater Date: Thu, 12 Aug 2004 22:43:11 +0000 Subject: [PATCH] (svn r37) Do not change to HWSURFACE since it's not working! --- sdl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sdl.c b/sdl.c index c259380a7c..2cd2fd511b 100644 --- a/sdl.c +++ b/sdl.c @@ -295,6 +295,7 @@ static bool CreateMainSurface(int w, int h) DEBUG(misc, 0) ("sdl: using mode %dx%d", w, h); + // DO NOT CHANGE TO HWSURFACE, IT DOES NOT WORK newscreen = SDL_CALL SDL_SetVideoMode(w, h, 8, SDL_SWSURFACE + SDL_HWPALETTE + (_fullscreen?SDL_FULLSCREEN:SDL_RESIZABLE)); if(newscreen == NULL) return false;