From: notaz Date: Sat, 17 Dec 2011 21:33:15 +0000 (+0200) Subject: fix alpha for 32bpp screen X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=sdl_omap.git;a=commitdiff_plain;h=5848b0cd8faa53ce16300c4cca06cdb6d42dcc1d fix alpha for 32bpp screen those bits are ignored by hw, tell SDL there is no alpha. --- diff --git a/src/video/omapdss/sdlif.c b/src/video/omapdss/sdlif.c index 1d682fb..409876a 100644 --- a/src/video/omapdss/sdlif.c +++ b/src/video/omapdss/sdlif.c @@ -108,7 +108,7 @@ static SDL_Surface *omap_SetVideoMode(SDL_VideoDevice *this, SDL_Surface *curren format = SDL_ReallocFormat(current, 24, 0xff0000, 0xff00, 0xff, 0); break; case 32: - format = SDL_ReallocFormat(current, 32, 0xff0000, 0xff00, 0xff, 0xff000000); + format = SDL_ReallocFormat(current, 32, 0xff0000, 0xff00, 0xff, 0); break; default: err("SetVideoMode: bpp %d not supported", bpp);