Skip to content

Commit 8568244

Browse files
authored
fix(intro): Fix order of Display Update and Draw in intro loop (#2264)
1 parent 8536a29 commit 8568244

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Generals/Code/GameEngine/Source/GameClient/GameClient.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -583,8 +583,8 @@ void GameClient::update( void )
583583
if(TheGlobalData->m_playIntro || TheGlobalData->m_afterIntro)
584584
{
585585
// redraw all views, update the GUI
586-
TheDisplay->DRAW();
587586
TheDisplay->UPDATE();
587+
TheDisplay->DRAW();
588588
return;
589589
}
590590

GeneralsMD/Code/GameEngine/Source/GameClient/GameClient.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -621,8 +621,8 @@ void GameClient::update( void )
621621
if(TheGlobalData->m_playIntro || TheGlobalData->m_afterIntro)
622622
{
623623
// redraw all views, update the GUI
624-
TheDisplay->DRAW();
625624
TheDisplay->UPDATE();
625+
TheDisplay->DRAW();
626626
return;
627627
}
628628

0 commit comments

Comments
 (0)