diff -r a36102728776 -r c9610ad20fef hedgewars/uStore.pas --- a/hedgewars/uStore.pas Mon Oct 16 19:20:13 2006 +0000 +++ b/hedgewars/uStore.pas Mon Oct 16 21:06:32 2006 +0000 @@ -108,6 +108,7 @@ clr.r:= Color shr 16; clr.g:= (Color shr 8) and $FF; clr.b:= Color and $FF; +clr.a:= $FF; tmpsurf:= TTF_RenderUTF8_Blended(Fontz[Font].Handle, PChar(s), clr); Result.x:= X + 3; Result.y:= Y + 1; @@ -374,6 +375,7 @@ clr.r:= $FF; clr.g:= $FF; clr.b:= $FF; +clr.a:= $FF; tmpsurf:= TTF_RenderUTF8_Solid(Fontz[Font].Handle, PChar(s), clr); SDLTry(tmpsurf <> nil, true); SDL_UpperBlit(tmpsurf, nil, Surface, @r);