# HG changeset patch # User darkvater # Date 2004-08-12 22:43:11 # Node ID 5fa4dd10a7b1218f3156eac206a3f93744f4c117 # Parent ab864a4f479872b308d7a24477dcf83734962974 (svn r37) Do not change to HWSURFACE since it's not working! diff --git a/sdl.c b/sdl.c --- a/sdl.c +++ b/sdl.c @@ -295,6 +295,7 @@ static bool CreateMainSurface(int w, int 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;