mirror of
https://github.com/libretro/RetroArch
synced 2025-03-04 07:13:26 +00:00
(Lakka) Fix label display with video_threaded
This commit is contained in:
parent
3c760d27a8
commit
abe6aa79fe
@ -284,8 +284,10 @@ static void lakka_draw_text(const char *str, float x,
|
|||||||
params.color = FONT_COLOR_RGBA(255, 255, 255, a8);
|
params.color = FONT_COLOR_RGBA(255, 255, 255, a8);
|
||||||
params.full_screen = true;
|
params.full_screen = true;
|
||||||
|
|
||||||
if (font_driver)
|
if (driver.video_data && driver.video_poke
|
||||||
font_driver->render_msg(font, str, ¶ms);
|
&& driver.video_poke->set_osd_msg)
|
||||||
|
driver.video_poke->set_osd_msg(driver.video_data,
|
||||||
|
str, ¶ms);
|
||||||
}
|
}
|
||||||
|
|
||||||
void lakka_draw_background(void)
|
void lakka_draw_background(void)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user