example(freetype): replace the arial font with lato to avoid licensing issues

fixes https://github.com/zephyrproject-rtos/zephyr/issues/48111
This commit is contained in:
Gabor Kiss-Vamosi 2022-07-23 20:32:23 +02:00 committed by Bartosz Gołaszewski
parent 322164745a
commit fcd9a9a625
3 changed files with 1 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View File

@ -10,7 +10,7 @@ void lv_example_freetype_1(void)
/*Create a font*/
static lv_ft_info_t info;
/*FreeType uses C standard file system, so no driver letter is required.*/
info.name = "./lvgl/examples/libs/freetype/arial.ttf";
info.name = "./lvgl/examples/libs/freetype/Lato-Regular.ttf";
info.weight = 24;
info.style = FT_FONT_STYLE_NORMAL;
info.mem = NULL;