@@ -292,12 +292,13 @@ static bool CreateMainSurface(int w, int
sizechange = (_screen.width != w || _screen.height != h);
_screen.pitch = _screen.width = w;
_screen.height = 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;
_sdl_screen = newscreen;
InitPalette();
Status change: