You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-games/t4k-common/files/t4k-common-0.1.1-missing-te...

15 lines
532 B

Fix some missing (transparent) text with libsdl-1.2.15_p20210224
e.g. empty menus in tuxmath
--- a/src/t4k_sdl.c
+++ b/src/t4k_sdl.c
@@ -1401,3 +1401,3 @@
/* Use color key for eventual transparency: */
- color_key = SDL_MapRGB(bg->format, 30, 30, 30);
+ color_key = SDL_MapRGBA(bg->format, 30, 30, 30, 0xff);
SDL_FillRect(bg, NULL, color_key);
@@ -1448,3 +1448,3 @@
SDL_SetColorKey(bg, SDL_SRCCOLORKEY|SDL_RLEACCEL, color_key);
- out = SDL_DisplayFormatAlpha(bg);
+ out = SDL_DisplayFormat(bg);
SDL_FreeSurface(bg);