Bold font, menu bg color

This commit is contained in:
simon.kagstrom 2009-01-05 13:39:36 +00:00
parent de12b0e4bd
commit 2b7277d676
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -61,7 +61,7 @@ static void print_font(SDL_Surface *screen, TTF_Font *font, int r, int g, int b,
buf[i] = ' ';
}
font_surf = TTF_RenderText_Solid(font, buf,
font_surf = TTF_RenderText_Blended(font, buf,
color);
if (!font_surf)
{
@ -343,7 +343,7 @@ int menu_select(SDL_Surface *screen, menu_t *p_menu,
{
uint32_t keys;
SDL_FillRect(screen, 0, SDL_MapRGB(screen->format, 0, 0, 0));
SDL_FillRect(screen, 0, SDL_MapRGB(screen->format, 0x00, 0x80, 0x80));
menu_draw(screen, p_menu);
SDL_Flip(screen);