Pre Merge pull request !10 from 独角戏/Develope

This commit is contained in:
独角戏 2025-02-17 03:13:44 +00:00 committed by Gitee
commit ef33751599
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -128,7 +128,12 @@ HMI_ENGINE_RESULT HMI_StartEngine(const void* pstParameters)
if(NULL != pstStartScreen->pstActions->Prepare) if(NULL != pstStartScreen->pstActions->Prepare)
{ {
eProcessResult = pstStartScreen->pstActions->Prepare(g_pstActivedEngineObject->Interface, pstParameters); eProcessResult = pstStartScreen->pstActions->Prepare(g_pstActivedEngineObject->Interface, pstParameters);
g_pstActivedEngineObject->Interface->fnSyncBuffer();
if( (NULL != g_pstActivedEngineObject->Interface) &&
(NULL != g_pstActivedEngineObject->Interface->fnSyncBuffer))
{
g_pstActivedEngineObject->Interface->fnSyncBuffer();
}
} }
} }
} }