mirror of
https://github.com/libretro/RetroArch
synced 2025-04-17 20:43:10 +00:00
Log font rendering backend only once (#13371)
This commit is contained in:
parent
6c123dd078
commit
2c7d2bcc18
@ -67,8 +67,9 @@ int font_renderer_create_default(
|
|||||||
*handle = font_backends[i]->init(path, font_size);
|
*handle = font_backends[i]->init(path, font_size);
|
||||||
if (*handle)
|
if (*handle)
|
||||||
{
|
{
|
||||||
RARCH_LOG("[Font]: Using font rendering backend: \"%s\".\n",
|
if (!video_font_driver)
|
||||||
font_backends[i]->ident);
|
RARCH_LOG("[Font]: Using font rendering backend: \"%s\".\n",
|
||||||
|
font_backends[i]->ident);
|
||||||
*drv = font_backends[i];
|
*drv = font_backends[i];
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user