mirror of
https://github.com/libretro/RetroArch
synced 2025-01-26 09:35:21 +00:00
(GDI) Buildfix
This commit is contained in:
parent
7df38ac5db
commit
b303283ac3
@ -82,11 +82,14 @@ static void menu_display_gdi_clear_color(menu_display_ctx_clearcolor_t *clearcol
|
|||||||
|
|
||||||
static bool menu_display_gdi_font_init_first(
|
static bool menu_display_gdi_font_init_first(
|
||||||
void **font_handle, void *video_data,
|
void **font_handle, void *video_data,
|
||||||
const char *font_path, float font_size)
|
const char *font_path, float font_size,
|
||||||
|
bool is_threaded)
|
||||||
{
|
{
|
||||||
font_data_t **handle = (font_data_t**)font_handle;
|
font_data_t **handle = (font_data_t**)font_handle;
|
||||||
*handle = font_driver_init_first(video_data,
|
*handle = font_driver_init_first(video_data,
|
||||||
font_path, font_size, true, FONT_DRIVER_RENDER_GDI);
|
font_path, font_size, true,
|
||||||
|
is_threaded,
|
||||||
|
FONT_DRIVER_RENDER_GDI);
|
||||||
return *handle;
|
return *handle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user