(CXX_BUILD) Silence warning

This commit is contained in:
twinaphex 2019-06-24 15:09:37 +02:00
parent d2fd4d48ae
commit 405d3fec67
2 changed files with 2 additions and 2 deletions

View File

@ -286,7 +286,7 @@ static void caca_set_osd_msg(void *data,
const char *msg,
const void *params, void *font)
{
font_driver_render_msg(video_info, font, msg, params);
font_driver_render_msg(video_info, font, msg, (const struct font_params*)params);
}
static const video_poke_interface_t caca_poke_interface = {

View File

@ -2494,7 +2494,7 @@ static void gl2_set_osd_msg(void *data,
const char *msg,
const void *params, void *font)
{
font_driver_render_msg(video_info, font, msg, (const struct font_params *)params);
font_driver_render_msg(video_info, font, msg, (const struct font_params*)params);
}
static void gl2_show_mouse(void *data, bool state)