(RMenu) Use menu_ticker_line for RMenu as well
This commit is contained in:
parent
457a1f8036
commit
84ed664fd1
|
@ -2244,6 +2244,9 @@ static int select_setting(void *data, uint64_t input)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
char setting_text_buf[256];
|
||||||
|
menu_ticker_line(setting_text_buf, 25, g_extern.frame_count / 15, setting_text);
|
||||||
|
|
||||||
if (!(j < NUM_ENTRY_PER_PAGE))
|
if (!(j < NUM_ENTRY_PER_PAGE))
|
||||||
{
|
{
|
||||||
j = 0;
|
j = 0;
|
||||||
|
@ -2270,7 +2273,7 @@ static int select_setting(void *data, uint64_t input)
|
||||||
font_parms.color = WHITE;
|
font_parms.color = WHITE;
|
||||||
|
|
||||||
if (driver.video_poke->set_osd_msg)
|
if (driver.video_poke->set_osd_msg)
|
||||||
driver.video_poke->set_osd_msg(driver.video_data, setting_text, &font_parms);
|
driver.video_poke->set_osd_msg(driver.video_data, setting_text_buf, &font_parms);
|
||||||
|
|
||||||
if (i != selected)
|
if (i != selected)
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in New Issue