滚动字幕问题
做了一个滚动字幕,有两个问题。
1,字幕看起来不连续
2,运行一段后,越走越慢。
主体
static void myiweb_DrawText(myiweb * pMe)
{
IDISPLAY_SetFont( pMe->pIDisplay, AEE_FONT_LARGE, pMe->pFont );
IDISPLAY_DrawText(pMe->pIDisplay, AEE_FONT_LARGE, szText, -1, 0, 200, NULL, 0);
IDISPLAY_Update(pMe->pIDisplay);
pMe->posText++;
if (pMe->posText > pMe->m_totalLen)
pMe->posText = 0;
if (pMe->m_isActive)
{
ISHELL_SetTimer(pMe->pIShell,pMe->m_delay,(PFNNOTIFY)myiweb_DrawText,pMe);
}
}