Merge pull request #1075 from lakkatv/lakka

(Lakka) Fix label display with video_threaded
This commit is contained in:
Twinaphex 2014-10-01 23:54:01 +02:00
commit a9850a1ea7

View File

@ -284,8 +284,10 @@ static void lakka_draw_text(const char *str, float x,
params.color = FONT_COLOR_RGBA(255, 255, 255, a8);
params.full_screen = true;
if (font_driver)
font_driver->render_msg(font, str, &params);
if (driver.video_data && driver.video_poke
&& driver.video_poke->set_osd_msg)
driver.video_poke->set_osd_msg(driver.video_data,
str, &params);
}
void lakka_draw_background(void)