diff -r 8d9aff55e6ab -r 32fa6282efe2 hedgewars/uStore.pas --- a/hedgewars/uStore.pas Thu Oct 26 16:08:29 2006 +0000 +++ b/hedgewars/uStore.pas Fri Oct 27 14:30:36 2006 +0000 @@ -108,7 +108,7 @@ clr.r:= Color shr 16; clr.g:= (Color shr 8) and $FF; clr.b:= Color and $FF; -tmpsurf:= TTF_RenderUTF8_Blended(Fontz[Font].Handle, PChar(s), clr); +tmpsurf:= TTF_RenderUTF8_Blended(Fontz[Font].Handle, PChar(s), clr.value); Result.x:= X + FontBorder + 2; Result.y:= Y + FontBorder; SDLTry(tmpsurf <> nil, true); @@ -375,7 +375,7 @@ clr.r:= $FF; clr.g:= $FF; clr.b:= $FF; -tmpsurf:= TTF_RenderUTF8_Solid(Fontz[Font].Handle, PChar(s), clr); +tmpsurf:= TTF_RenderUTF8_Solid(Fontz[Font].Handle, PChar(s), clr.value); SDLTry(tmpsurf <> nil, true); SDL_UpperBlit(tmpsurf, nil, Surface, @r); SDL_FreeSurface(tmpsurf)