mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 08:30:16 +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(
|
||||
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;
|
||||
*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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user