I'm looking into this, would this be due to the changes to the LVINFO_UPDATE_FUNC and this code is not in that new format?
from src/bitrate-5d3.c:
switch(rec_indicator)
{
case 0:
return;
case 1: // elapsed
bmp_printf(
FONT(FONT_MED, COLOR_WHITE, COLOR_BLACK),
time_indic_x + 160 - 6 * font_med.width,
time_indic_y,
"%3d:%02d",
elapsed_time / 60,
elapsed_time % 60
);
return;
so if I replaced the code there with the new LVINFO_UPDATE_FUNC information would that do the trick?