mirror of
https://github.com/libretro/RetroArch.git
synced 2025-02-04 00:06:11 +00:00
(CXX_BUILD) Silence warning
This commit is contained in:
parent
d2fd4d48ae
commit
405d3fec67
@ -286,7 +286,7 @@ static void caca_set_osd_msg(void *data,
|
|||||||
const char *msg,
|
const char *msg,
|
||||||
const void *params, void *font)
|
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 = {
|
static const video_poke_interface_t caca_poke_interface = {
|
||||||
|
@ -2494,7 +2494,7 @@ static void gl2_set_osd_msg(void *data,
|
|||||||
const char *msg,
|
const char *msg,
|
||||||
const void *params, void *font)
|
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)
|
static void gl2_show_mouse(void *data, bool state)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user