Silence this warning

This commit is contained in:
twinaphex 2020-02-12 14:16:09 +01:00
parent f3b3fc3935
commit 83a03b6679

View File

@ -204,11 +204,12 @@ static bool menu_display_null_font_init_first(
bool is_threaded)
{
font_data_t **handle = (font_data_t**)font_handle;
*handle = font_driver_init_first(video_data,
if ((*handle = font_driver_init_first(video_data,
font_path, font_size, true,
is_threaded,
FONT_DRIVER_RENDER_DONT_CARE);
return *handle;
FONT_DRIVER_RENDER_DONT_CARE)))
return true;
return false;
}
static const float *menu_display_null_get_default_vertices(void)