Silence this warning
This commit is contained in:
parent
f3b3fc3935
commit
83a03b6679
|
@ -204,11 +204,12 @@ static bool menu_display_null_font_init_first(
|
||||||
bool is_threaded)
|
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,
|
if ((*handle = font_driver_init_first(video_data,
|
||||||
font_path, font_size, true,
|
font_path, font_size, true,
|
||||||
is_threaded,
|
is_threaded,
|
||||||
FONT_DRIVER_RENDER_DONT_CARE);
|
FONT_DRIVER_RENDER_DONT_CARE)))
|
||||||
return *handle;
|
return true;
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const float *menu_display_null_get_default_vertices(void)
|
static const float *menu_display_null_get_default_vertices(void)
|
||||||
|
|
Loading…
Reference in New Issue