Minor change to rendering of font names.
This commit is contained in:
parent
177be1bbf4
commit
2ecfb4875a
1 changed files with 1 additions and 1 deletions
|
|
@ -3291,7 +3291,7 @@ static void mainloop(void)
|
|||
cur_font = cur_thing;
|
||||
|
||||
char font_tux_text[512];
|
||||
snprintf(font_tux_text, sizeof font_tux_text, "%s, %s", TTF_FontFaceFamilyName(getfonthandle(cur_font)), TTF_FontFaceStyleName(getfonthandle(cur_font)));
|
||||
snprintf(font_tux_text, sizeof font_tux_text, "%s (%s).", TTF_FontFaceFamilyName(getfonthandle(cur_font)), TTF_FontFaceStyleName(getfonthandle(cur_font)));
|
||||
printf("font change:%s\n", font_tux_text);
|
||||
draw_tux_text(TUX_GREAT, font_tux_text, 1);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue