mirror of
https://github.com/Oibaf66/uae-wii.git
synced 2024-11-14 23:05:08 +01:00
Removed code for alternative font
This commit is contained in:
parent
5650524f40
commit
a9d415b91c
@ -89,13 +89,10 @@ static SDL_Surface *real_screen;
|
|||||||
|
|
||||||
static int is_inited = 0;
|
static int is_inited = 0;
|
||||||
static TTF_Font *menu_font16, *menu_font20,*menu_font8, *menu_font10 ;
|
static TTF_Font *menu_font16, *menu_font20,*menu_font8, *menu_font10 ;
|
||||||
static TTF_Font *menu_font_alt16;
|
|
||||||
#if defined(GEKKO)
|
#if defined(GEKKO)
|
||||||
#define FONT_PATH "/apps/uae/FreeMono.ttf"
|
#define FONT_PATH "/apps/uae/FreeMono.ttf"
|
||||||
#define FONT_ALT_PATH "/apps/uae/Smaller.ttf"
|
|
||||||
#else
|
#else
|
||||||
#define FONT_PATH "FreeMono.ttf"
|
#define FONT_PATH "FreeMono.ttf"
|
||||||
#define FONT_ALT_PATH "Smaller.ttf"
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int fh, fw;
|
int fh, fw;
|
||||||
@ -497,48 +494,6 @@ void menu_print_font(SDL_Surface *screen, int r, int g, int b,
|
|||||||
SDL_FreeSurface(font_surf);
|
SDL_FreeSurface(font_surf);
|
||||||
}
|
}
|
||||||
|
|
||||||
void menu_print_font_alt(SDL_Surface *screen, int r, int g, int b, int x, int y, const char *msg)
|
|
||||||
{
|
|
||||||
#undef _MAX_STRING
|
|
||||||
#define _MAX_STRING 64
|
|
||||||
SDL_Surface *font_surf;
|
|
||||||
SDL_Rect dst = {x, y, 0, 0};
|
|
||||||
SDL_Color color = {r, g, b};
|
|
||||||
char buf[255];
|
|
||||||
unsigned int i;
|
|
||||||
|
|
||||||
memset(buf, 0, sizeof(buf));
|
|
||||||
strncpy(buf, msg, 254);
|
|
||||||
if (buf[0] != '|' && buf[0] != '^' && buf[0] != '.'
|
|
||||||
&& buf[0] != '#' && buf[0] != ' ' )
|
|
||||||
{
|
|
||||||
if (strlen(buf)>_MAX_STRING)
|
|
||||||
{
|
|
||||||
buf[_MAX_STRING-3] = '.';
|
|
||||||
buf[_MAX_STRING-2] = '.';
|
|
||||||
buf[_MAX_STRING-1] = '.';
|
|
||||||
buf[_MAX_STRING] = '\0';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Fixup multi-menu option look */
|
|
||||||
for (i = 0; i < strlen(buf) ; i++)
|
|
||||||
{
|
|
||||||
if (buf[i] == '^' || buf[i] == '|')
|
|
||||||
buf[i] = ' ';
|
|
||||||
}
|
|
||||||
|
|
||||||
font_surf = TTF_RenderText_Blended(menu_font_alt16, buf, color);
|
|
||||||
if (!font_surf)
|
|
||||||
{
|
|
||||||
fprintf(stderr, "%s\n", TTF_GetError());
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
SDL_BlitSurface(font_surf, NULL, screen, &dst);
|
|
||||||
SDL_FreeSurface(font_surf);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static void menu_draw(SDL_Surface *screen, menu_t *p_menu, int sel, int font_size)
|
static void menu_draw(SDL_Surface *screen, menu_t *p_menu, int sel, int font_size)
|
||||||
{
|
{
|
||||||
@ -1185,8 +1140,6 @@ void menu_init(SDL_Surface *screen)
|
|||||||
menu_font8 = read_font(FONT_PATH, 8);
|
menu_font8 = read_font(FONT_PATH, 8);
|
||||||
menu_font10 = read_font(FONT_PATH, 10);
|
menu_font10 = read_font(FONT_PATH, 10);
|
||||||
|
|
||||||
menu_font_alt16 = read_font(FONT_ALT_PATH,16);
|
|
||||||
|
|
||||||
real_screen = screen;
|
real_screen = screen;
|
||||||
VirtualKeyboard_init(screen);
|
VirtualKeyboard_init(screen);
|
||||||
is_inited = 1;
|
is_inited = 1;
|
||||||
@ -1201,7 +1154,6 @@ void menu_deinit(void)
|
|||||||
TTF_CloseFont(menu_font20);
|
TTF_CloseFont(menu_font20);
|
||||||
TTF_CloseFont(menu_font8);
|
TTF_CloseFont(menu_font8);
|
||||||
TTF_CloseFont(menu_font10);
|
TTF_CloseFont(menu_font10);
|
||||||
TTF_CloseFont(menu_font_alt16);
|
|
||||||
|
|
||||||
TTF_Quit();
|
TTF_Quit();
|
||||||
}
|
}
|
||||||
|
@ -38,7 +38,6 @@ extern int RATIO;
|
|||||||
|
|
||||||
|
|
||||||
void menu_print_font(SDL_Surface *screen, int r, int g, int b, int x, int y, const char *msg, int font_size);
|
void menu_print_font(SDL_Surface *screen, int r, int g, int b, int x, int y, const char *msg, int font_size);
|
||||||
void menu_print_font_alt(SDL_Surface *screen, int r, int g, int b, int x, int y, const char *msg);
|
|
||||||
|
|
||||||
/* Various option selects */
|
/* Various option selects */
|
||||||
int menu_select_title(const char *title, const char **pp_msgs, int *p_submenus);
|
int menu_select_title(const char *title, const char **pp_msgs, int *p_submenus);
|
||||||
|
Loading…
Reference in New Issue
Block a user