OSD: fix scrolling file name when help text is scrolling.

This commit is contained in:
sorgelig
2021-06-04 22:10:42 +08:00
parent 0d636b1bf8
commit 214ab9304d
3 changed files with 16 additions and 16 deletions

View File

@@ -1220,12 +1220,12 @@ void HandleUI(void)
}
else if (helpstate == 9)
{
ScrollReset();
ScrollReset(1);
++helpstate;
}
else
{
ScrollText(OsdGetSize() - 1, helptexts[helptext_idx], 0, 0, 0, 0);
ScrollText(OsdGetSize() - 1, helptexts[helptext_idx], 0, 0, 0, 0, 1);
}
}