fix alpha for 32bpp screen
authornotaz <notasas@gmail.com>
Sat, 17 Dec 2011 21:33:15 +0000 (23:33 +0200)
committernotaz <notasas@gmail.com>
Sat, 17 Dec 2011 21:33:15 +0000 (23:33 +0200)
those bits are ignored by hw, tell SDL there is no alpha.

src/video/omapdss/sdlif.c

index 1d682fb..409876a 100644 (file)
@@ -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);